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": "Reddit Syntax Highlighting", "description": "Enhance Your Reddit Browsing Experience with Code Syntax Highlighting!", "version": "1.0", "action": { "default_popup": "index.html", "default_icon": "assets\/wizard_icon_48x48.png" }, "icons": { "16": "assets\/wizard_icon_16x16.png", "32": "assets\/wizard_icon_32x32.png", "48": "assets\/wizard_icon_48x48.png", "128": "assets\/wizard_icon_128x128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.reddit.com\/r\/*" ], "js": [ "scripts\/highlight.min.js", "scripts\/content.js" ], "run_at": "document_start" } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' cdn.jsdelivr.net" } }