Github-Copilot-Blocker/manifest.json

36 lines
721 B
JSON
Raw Normal View History

2024-12-18 17:33:52 -06:00
{
"manifest_version": 3,
"name": "Github Copilot Remover",
"version": "1.0",
"description": "Attempts to hide the Copilot button on the Github website",
"icons": {
"48": "icons/border-48.png"
},
"background": {
"scripts": ["remove-by-URL.js"]
},
"content_scripts": [
{
"matches": ["*://*.github.com/*"],
"js": ["remove-by-element.js"],
"run_at": "document_idle",
"world": "MAIN"
}
],
"host_permissions": [
"https://github.com/*",
"https://github.githubassets.com/*"
],
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking"
]
}