55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "PassKeeper",
|
|
"version": "1.0.0",
|
|
"description": "Autofill and manage your PassKeeper vault",
|
|
"permissions": [
|
|
"storage",
|
|
"activeTab",
|
|
"tabs",
|
|
"idle",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"browser_action": {
|
|
"default_popup": "popup/popup.html",
|
|
"default_title": "PassKeeper",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"background": {
|
|
"scripts": ["background.firefox.js"],
|
|
"persistent": false
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["http://*/*", "https://*/*"],
|
|
"js": ["shared/browser-polyfill.js", "content/content.js"],
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": ["https://pwkeeper.ngodanguyen.tech/*"],
|
|
"js": ["shared/browser-polyfill.js", "bridge/bridge.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"web_accessible_resources": [],
|
|
"commands": {
|
|
"_execute_browser_action": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+L",
|
|
"mac": "Command+Shift+L"
|
|
},
|
|
"description": "Open PassKeeper"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|