Github-Copilot-Blocker/manifest.json
2024-12-18 18:12:29 -06:00

41 lines
No EOL
894 B
JSON

{
"manifest_version": 3,
"name": "Github Copilot Remover",
"version": "1.0",
"description": "Attempts to hide the Copilot button on the Github website",
"browser_specific_settings": {
"gecko": {
"update_url": "https://git.shad.moe/Konpeki-Solutions/Github-Copilot-Blocker/raw/branch/main/updates.json"
}
},
"icons": {
"48": "icons/border-48.png"
},
"background": {
"scripts": ["./src/remove-by-URL.js"]
},
"content_scripts": [
{
"matches": ["*://*.github.com/*"],
"js": ["./src/remove-by-element.js"],
"run_at": "document_end"
}
],
"host_permissions": [
"https://github.com/*",
"https://github.githubassets.com/*"
],
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking"
]
}