39 lines
768 B
JSON
39 lines
768 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Goon Plugin",
|
|
"version": "0.1.0",
|
|
"description": "A Chrome extension",
|
|
"permissions": [
|
|
"storage",
|
|
"tabs",
|
|
"activeTab"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "src/background/background.js",
|
|
"type": "module"
|
|
},
|
|
"action": {
|
|
"default_popup": "src/popup/popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["src/content/content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|