Github-Copilot-Blocker/manifest.json

35 lines
703 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": {
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"
]
}