Inspect and view changes in Suspicious Login Monitor source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Suspicious Login Monitor",
"version": "1.0",
"description": "Utility to check and monitor strange account login activities.",
"permissions": [
"storage",
"activeTab",
"tabs",
"webRequest",
"<all_urls>",
"notifications"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"32": "icons/logo_32.png",
"64": "icons/logo_64.png",
"128": "icons/logo_128.png"
}
},
"icons": {
"32": "icons/logo_32.png",
"64": "icons/logo_64.png",
"128": "icons/logo_128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{1953ff24-ed20-4a8e-9b2a-0bb28462d07d}"
}
}
}