mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
34 lines
897 B
JSON
34 lines
897 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Gitako - GitHub file tree",
|
|
"icons": {
|
|
"64": "icons/Gitako-64.png",
|
|
"128": "icons/Gitako-128.png",
|
|
"256": "icons/Gitako-256.png"
|
|
},
|
|
"permissions": ["scripting", "storage", "contextMenus", "activeTab"],
|
|
"host_permissions": ["*://*.github.com/*", "*://gitako.enix.one/*", "*://*.sentry.io/*"],
|
|
"optional_host_permissions": ["*://*/*"],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["icons/vscode/*"],
|
|
"matches": ["http://*/*", "https://*/*"]
|
|
},
|
|
{
|
|
"resources": ["content.css"],
|
|
"matches": ["http://*/*", "https://*/*"]
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_icon": "icons/Gitako.png"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://github.com/*"],
|
|
"js": ["firefox-shim.js", "browser-polyfill.js", "content.js"]
|
|
}
|
|
]
|
|
}
|