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": 2, "name": "Regex Replace", "version": "1.1", "icons": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "browser_action": { "default_popup": "index.html" }, "content_scripts": [ { "all_frames": true, "js": [ "content-scripts.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_start" } ], "permissions": [ "<all_urls>", "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "linux": "Ctrl+Shift+F", "mac": "Command+Shift+F", "windows": "Ctrl+Shift+F", "chromeos": "Ctrl+Shift+F" } } } }