Skip to content

Commit

Permalink
Disable password bubble (closes DevExpress#1913) (DevExpress#2021)
Browse files Browse the repository at this point in the history
* Disable password bubble (closes DevExpress#1913)

* Disable Google Translate
  • Loading branch information
AndreyBelym authored and kirovboris committed Dec 18, 2019
1 parent bcddc14 commit 33fb9bd
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions src/browser/provider/built-in/chrome/runtime-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,29 @@ async function createTempUserDir (proxyHostName) {
await ensureDir(profileDirName);

const preferences = {
devtools: {
preferences: {
currentDockState: '"undocked"',
lastDockState: '"bottom"'
'credentials_enable_service': false,

'devtools': {
'preferences': {
'currentDockState': '"undocked"',
'lastDockState': '"bottom"'
}
},

profile: {
'profile': {
'content_settings': {
exceptions: {
'exceptions': {
'automatic_downloads': {
[proxyHostName]: { setting: 1 }
}
}
}
},

'password_manager_enabled': false
},

'translate': {
'enabled': false
}
};

Expand Down

0 comments on commit 33fb9bd

Please sign in to comment.