Aug 26 - Enhance security 3
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

This commit is contained in:
2026-08-26 13:54:48 -04:00
parent 6c1bef73c8
commit cc216b0d98
16 changed files with 11056 additions and 43 deletions
+20 -5
View File
@@ -21,18 +21,33 @@
}
},
"background": {
"scripts": ["background.firefox.js"],
"scripts": [
"shared/psl.js",
"background.firefox.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["shared/browser-polyfill.js", "content/content.js"],
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"shared/browser-polyfill.js",
"shared/psl.js",
"content/content.js"
],
"run_at": "document_idle"
},
{
"matches": ["https://pwkeeper.ngodanguyen.tech/*"],
"js": ["shared/browser-polyfill.js", "bridge/bridge.js"],
"matches": [
"https://pwkeeper.ngodanguyen.tech/*"
],
"js": [
"shared/browser-polyfill.js",
"bridge/bridge.js"
],
"run_at": "document_idle"
}
],