Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 15, 2025.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "$schema": "https:\/\/json.schemastore.org\/chrome-manifest.json", "manifest_version": 3, "name": "Bug Reporter", "version": "1.0.0", "description": "Flag broken buttons on any webpage and store reports in Supabase", "permissions": [ "activeTab", "storage", "scripting" ], "host_permissions": [ "<all_urls>" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "css": [ "content.css" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "commands": { "toggle-highlight": { "suggested_key": { "default": "Ctrl+B", "mac": "Command+B" }, "description": "Toggle highlight mode" } }, "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" } }