gPass/firefox_webextension/manifest.json

48 lines
1.0 KiB
JSON
Raw Normal View History

2017-04-17 20:39:53 +02:00
{
"manifest_version": 2,
"name": "gPass",
"short_name": "gPass",
2021-03-02 14:56:26 +01:00
"version": "1.1",
2017-04-17 20:39:53 +02:00
"description": "gPass : global password manager",
2017-04-17 20:39:53 +02:00
"icons" : {"16":"icons/gpass_icon_16.png", "32":"icons/gpass_icon_32.png", "64":"icons/gpass_icon_64.png", "128":"icons/gpass_icon_128.png"},
2017-04-17 20:39:53 +02:00
"author" : "Grégory Soutadé",
"homepage_url" : "http://indefero.soutade.fr/p/gpass",
2017-04-17 20:39:53 +02:00
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/misc.js", "lib/main.js"],
2017-04-17 20:39:53 +02:00
"run_at" : "document_idle",
"all_frames" : true
}
],
"background": {
"persistent": true,
"scripts": ["lib/parseuri.js", "lib/misc.js", "compat.js", "background.js"]
},
"options_ui": {
"page":"options.html",
"browser_style": true
2017-04-17 20:39:53 +02:00
},
"browser_action": {
"default_icon": "icons/gpass_icon_32.png",
"default_title": "Get your password",
"default_popup": "popup/popup.html",
"browser_style": true
},
2017-04-17 20:39:53 +02:00
"permissions": [
"<all_urls>",
"activeTab",
2017-04-17 20:39:53 +02:00
"notifications",
"tabs",
2017-04-17 20:39:53 +02:00
"storage",
"clipboardWrite",
"menus"
2017-04-17 20:39:53 +02:00
]
}