Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "3.0.6", "name": "User JavaScript and CSS", "short_name": "User JS CSS", "description": "__MSG_description__", "minimum_chrome_version": "120", "permissions": [ "storage", "tabs", "unlimitedStorage", "userScripts", "scripting" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "optional_host_permissions": [ "*:\/\/*\/*" ], "icons": { "16": "img\/logo16.png", "32": "img\/logo32.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "action": { "default_popup": "src\/popup.html" }, "options_page": "src\/options.html", "background": { "service_worker": "src\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/content-script.js" ], "run_at": "document_start" } ], "sandbox": { "pages": [ "src\/sandbox.html" ] }, "web_accessible_resources": [ { "resources": [ "js-shared\/jquery.min.js" ], "matches": [ "*:\/\/*\/*" ] } ], "default_locale": "en", "content_security_policy": { "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval';" } }