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": {
|
2024-12-18 18:17:23 -06:00
|
|
|
"id": "ghcpblock@shad.moe",
|
2024-12-18 18:09:38 -06:00
|
|
|
"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 17:33:52 -06:00
|
|
|
|
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|