feat: improve Clipboard Sniffer extension integration and UI fixes

This commit is contained in:
2026-02-27 03:37:33 +00:00
parent 1d7fd9a5bc
commit 8e8bf47297
14 changed files with 872 additions and 181 deletions

47
extension/manifest.json Normal file
View File

@@ -0,0 +1,47 @@
{
"manifest_version": 3,
"name": "Tools App Extension",
"version": "1.0",
"description": "Browser extension for Tools App",
"permissions": [
"clipboardRead",
"offscreen",
"storage",
"alarms",
"scripting"
],
"host_permissions": [
"http://localhost/*",
"http://localhost:*/*",
"https://tools.7u.pl/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http://localhost/*",
"http://localhost:*/*",
"https://tools.7u.pl/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
}