password-store-extension/extension/manifest.json

29 lines
459 B
JSON

{
"name": "Password manager",
"description": "Password manager",
"version": "1.0",
"manifest_version": 3,
"icons": {
"48": "icons/icon.png"
},
"host_permissions": ["https://*/"],
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"scripting",
"contextMenus",
"activeTab",
"webNavigation",
"nativeMessaging"
],
"action": {
"default_popup": "popup.html"
}
}