Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BrainWave: Trivia Breaks", "version": "1.0", "description": "A Chrome extension to increase your knowledge.", "content_scripts": [ { "matches": [ "<all_urls>" ], "exclude_matches": [ "*:\/\/*\/*options.html" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "alarms", "storage" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "host_permissions": [ "<all_urls>" ], "web_accessible_resources": [ { "resources": [ "alarm.mp3" ], "matches": [ "<all_urls>" ] } ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "options.html" } }