Github-Copilot-Blocker/manifest.json

38 lines
No EOL
877 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": {
"id": "ghcpblock@shad.moe",
"update_url": "https://git.shad.moe/Konpeki-Solutions/Github-Copilot-Blocker/raw/branch/main/updates.json"
}
},
"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"
]
}