mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-08 20:19:06 +03:00
27 lines
582 B
JSON
27 lines
582 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Goose Highlighter",
|
|
"version": "1.0",
|
|
"description": "Highlight text on web pages",
|
|
"default_locale": "en",
|
|
"permissions": ["storage", "scripting", "activeTab"],
|
|
"action": {
|
|
"default_popup": "popup/popup.html",
|
|
"default_icon": "icons/icon128.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"icons": {
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|