moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{
"manifest_version": 3,
"name": "Waggle Companion",
"version": "0.1.0",
"description": "Save pages, selections, and questions to your Waggle workspace memory — Waggle gets smarter the more you use it.",
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"host_permissions": [
"http://127.0.0.1:3333/*",
"http://localhost:3333/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "Waggle Companion"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}