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": "Cheer Team", "description": "Randomly display cheerleaders to boost your mood!", "version": "0.1.2", "icons": { "16": "images\/logo.png", "48": "images\/logo.png", "128": "images\/logo.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "<all_urls>" ] } ], "action": { "default_icon": "images\/logo.png", "default_popup": "setting.html" }, "permissions": [ "storage" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "js\/background.js" } }