first commit

This commit is contained in:
2024-04-14 14:57:30 +03:00
commit 0b8db25b24
43 changed files with 13562 additions and 0 deletions

25
public/manifest.json Normal file
View File

@@ -0,0 +1,25 @@
{
"manifest_version": 3,
"name": "Minimal Manifest",
"version": "1.0.0",
"icons": {
"32": "qort.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
},
"permissions": ["scripting", "storage", "system.display", "activeTab", "tabs", "notifications"
],
"externally_connectable": {
"matches": ["<all_urls>", "*://localhost/*", "*://127.0.0.1/*"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"]
}
]
}