Github-Copilot-Blocker/manifest.json

41 lines
894 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",
2024-12-18 18:09:38 -06:00
"browser_specific_settings": {
"gecko": {
"update_url": "https://git.shad.moe/Konpeki-Solutions/Github-Copilot-Blocker/raw/branch/main/updates.json"
}
2024-12-18 18:12:29 -06:00
},
2024-12-18 18:09:38 -06:00
2024-12-18 17:33:52 -06:00
"icons": {
"48": "icons/border-48.png"
},
"background": {
2024-12-18 18:00:03 -06:00
"scripts": ["./src/remove-by-URL.js"]
2024-12-18 17:33:52 -06:00
},
"content_scripts": [
{
"matches": ["*://*.github.com/*"],
2024-12-18 18:00:03 -06:00
"js": ["./src/remove-by-element.js"],
"run_at": "document_end"
2024-12-18 17:33:52 -06:00
}
],
"host_permissions": [
"https://github.com/*",
"https://github.githubassets.com/*"
],
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking"
]
}