-
Notifications
You must be signed in to change notification settings - Fork 103
Description
I deployed Password Alert for a G Suite domain on App Engine alongside with the Chrome extension following Google guide (http://bit.ly/2Fk772O). Yet on the browser side, I couldn’t find the extension’s logs because it seems the background page link is not presented even in developer mode (chapters “View the thumbnail in Chrome’s local storage” & “View background page logs for the Password Alert Chrome extension” of Google procedure (http://bit.ly/2Fi64QK)). I Also do not see the javascript logs of chapter “View content script logs for the Password Alert Chrome extension”.
Do I have to change some parameter in the extension’s configuration to get the extension logs on the browser side or can I get these Logs somewhere else?.
Extension configuration file
{
"corp_email_domain": {
"Value": "@mydomain"
},
"corp_html": {
"Value": ["Primary",
"Primary SSO Page"]
},
"corp_html_tight": {
"Value": ["CHANGE ME <title>uniquely for your SSO page",
"CHANGE ME some more unique HTML from your SSO page here"]
},
"security_email_address": {
"Value": "testaccount@Mydomain"
},
"sso_form_selector": {
"Value": "#loginForm"
},
"sso_password_selector": {
"Value": "#loginForm #password"
},
"sso_url": {
"Value": "https://sso.example.com/"
},
"sso_username_selector": {
"Value": "#loginForm #username"
},
"whitelist_top_domains": {
"Value": []
},
"report_url": {
"Value": "myapp.appspot.com/report/"
},
"should_initialize_password": {
"Value": true
},
"domain_auth_secret": {
"Value": "abcdef"
}
}