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",
"name": "__MSG_appName__",
"version": "1.4.0",
"description": "__MSG_appDescription__",
"default_locale": "en",
"manifest_version": 3,
"permissions": [
"activeTab",
"storage",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>",
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"run_at": "document_end",
"js": [
"content.js"
]
}
],
"options_page": "options.html",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": ".\/images\/RE-16.png",
"48": ".\/images\/RE-48.png",
"128": ".\/images\/RE-128.png"
}
},
"commands": {
"toggle": {
"description": "Toggle Regex Search",
"suggested_key": {
"windows": "Ctrl+Shift+F",
"mac": "Command+Shift+F",
"linux": "Ctrl+Shift+F"
}
}
},
"icons": {
"16": ".\/images\/RE-16.png",
"48": ".\/images\/RE-48.png",
"128": ".\/images\/RE-128.png"
}
}