Files
PassKeeper/extension/manifest.json
T
nngo cc216b0d98
CI / Python lint (flake8) (push) Has been cancelled
CI / Python syntax check (push) Has been cancelled
CI / Alembic migration chain (push) Has been cancelled
CI / JavaScript syntax check (push) Has been cancelled
CI / Pytest (push) Has been cancelled
CI / Build extension zip (push) Has been cancelled
Aug 26 - Enhance security 3
2026-08-26 13:54:48 -04:00

73 lines
1.3 KiB
JSON

{
"manifest_version": 3,
"name": "PassKeeper",
"version": "1.0.0",
"description": "Autofill and manage your PassKeeper vault",
"permissions": [
"storage",
"activeTab",
"tabs",
"idle"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup/popup.html",
"default_title": "PassKeeper",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"shared/psl.js",
"content/content.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://pwkeeper.ngodanguyen.tech/*"
],
"js": [
"bridge/bridge.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Open PassKeeper"
}
}
}