core functionality complete

This commit is contained in:
2026-05-31 11:29:51 -07:00
parent f47301c0e4
commit 4a39065d90
12 changed files with 463 additions and 96 deletions
+4 -4
View File
@@ -6,17 +6,17 @@
"permissions": [
"storage",
"tabs",
"activeTab"
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "src/background/background.js",
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "src/popup/popup.html",
"default_popup": "viewer/index.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
@@ -26,7 +26,7 @@
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content/content.js"],
"js": ["content.js"],
"run_at": "document_idle"
}
],