{ "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": ["./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" ] }