04/26 New features, new for Firefox

This commit is contained in:
2026-04-26 10:38:05 -04:00
parent d59fbaa9bd
commit 80cf8eb599
6 changed files with 398 additions and 8 deletions
+53
View File
@@ -0,0 +1,53 @@
{
"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"
}
],
"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"
}
}