gPass/chrome_addon/manifest.json

46 lines
994 B
JSON
Raw Normal View History

2015-01-27 21:10:55 +01:00
{
2022-09-26 20:30:40 +02:00
"manifest_version": 3,
2015-01-27 21:10:55 +01:00
"name": "gPass",
"short_name": "gPass",
2024-04-28 09:44:52 +02:00
"version": "1.3",
2015-01-27 21:10:55 +01: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"},
2015-01-29 21:19:29 +01:00
"author" : "Grégory Soutadé",
2024-04-28 09:44:52 +02:00
"homepage_url" : "https://forge.soutade.fr/soutade/gPass",
2015-01-27 21:10:55 +01:00
"content_scripts": [
{
"matches": ["<all_urls>"],
2022-09-26 20:30:40 +02:00
"js": ["lib/main.js"],
2015-01-27 21:10:55 +01:00
"run_at" : "document_idle",
"all_frames" : true
}
],
"background": {
2022-09-26 20:30:40 +02:00
"service_worker": "background.js",
"type": "module"
2015-01-27 21:10:55 +01:00
},
"options_page": "options.html",
2022-09-26 20:30:40 +02:00
"action": {
"default_icon": {"32":"icons/gpass_icon_32.png"},
"default_title": "Get your password",
"default_popup": "popup/popup.html"
},
2022-09-26 20:30:40 +02:00
"host_permissions": [
"<all_urls>"
],
2015-01-27 21:10:55 +01:00
"permissions": [
"activeTab",
2015-01-27 21:10:55 +01:00
"notifications",
"storage",
"clipboardWrite",
"contextMenus"
2015-01-27 21:10:55 +01:00
]
}