Extensions to generate and save a password for your website without database!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Quick my password",
"author": "Clement Pentrella",
"description": "Extensions to generate and save a password for your website without database!",
"version": "1.0.1",
"permissions": [
"activeTab"
],
"action": {
"default_popup": "index.html"
},
"icons": {
"16": "./logo/logo_extension16.png",
"32": "./logo/logo_extension32.png",
"48": "./logo/logo_extension48.png",
"128": "./logo/logo_extension128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Q",
"mac": "MacCtrl+Q"
},
"description": "OpenUp",
"global": false
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content_script.js"
],
"css": [
"banner.css"
]
}
]
}