Skip to content

Commit

Permalink
Disable password bubble (closes #1913)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyBelym committed Dec 22, 2017
1 parent 3e8b0d0 commit f1601d9
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 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,25 @@ 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
}
};

Expand Down

0 comments on commit f1601d9

Please sign in to comment.