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,
"name": "controlx",
"version": "0.0.3",
"icons": {
"16": "img\/Logo.png",
"32": "img\/Logo.png",
"48": "img\/Logo.png",
"128": "img\/Logo.png"
},
"description": "Redesign any webpage to quickly customize pages, mock up redesigns, and suggest edits to your designer.",
"action": {
"default_popup": "popup.html",
"default_icon": "img\/Logo.png"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"activeTab",
"storage",
"contextMenus",
"scripting"
],
"web_accessible_resources": [
{
"resources": [
"img\/*.png"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}