Inspect and view changes in TL Password Generator 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": "TL Password Generator",
"version": "1.0",
"description": "Generate the password",
"icons": {
"16": "images/password-16.png",
"32": "images/password-32.png",
"48": "images/password-48.png",
"64": "images/password-64.png"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "images/password-16.png",
"32": "images/password-32.png",
"48": "images/password-48.png",
"64": "images/password-64.png"
},
"default_title": "TL Password Generator",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"<all_urls>",
"clipboardWrite",
"notifications"
],
"background": {
"page": "background.html"
},
"web_accessible_resources": [
"style.min.css",
"popup.html",
"history.html",
"password.js",
"history.js"
]
}