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": "Regex Live Tester", "version": "1.0", "description": "Test and fine-tune your regex in real time directly on web pages, through an intuitive overlay interface.", "permissions": [ "activeTab", "scripting", "storage" ], "web_accessible_resources": [ { "matches": [ "<all_urls>" ], "resources": [ "*.html", "js\/*.js", "css\/*.css", "svg\/*.svg" ] } ], "background": { "service_worker": "js\/background.js", "type": "module" }, "commands": { "regex-tester": { "suggested_key": { "default": "Alt+R" }, "description": "Open Regex Tester Overlay" } }, "action": { "default_popup": "popup.html", "default_icon": "icons\/icon48.png" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }