49 lines
931 B
JSON
49 lines
931 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Tools App Extension",
|
|
"version": "1.1",
|
|
"description": "Browser extension for Tools App",
|
|
"permissions": [
|
|
"clipboardRead",
|
|
"clipboardWrite",
|
|
"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"
|
|
}
|
|
}
|