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": "Edit Anything with Creative Power",
"version": "1.0.1",
"description": "Edit any website, take screenshots, and enhance any webpage with powerful tools",
"permissions": [
"activeTab",
"scripting",
"storage",
"contextMenus",
"tabs",
"downloads"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_title": "Edit Anything with Creative Power",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"howtouse.html"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"toggle-edit-mode": {
"suggested_key": {
"default": "Ctrl+Shift+E"
},
"description": "Toggle edit mode"
},
"toggle-dark-mode": {
"suggested_key": {
"default": "Ctrl+Shift+D"
},
"description": "Toggle dark mode"
},
"take-screenshot": {
"suggested_key": {
"default": "Ctrl+Shift+S"
},
"description": "Take screenshot"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}