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": "QuickEdit: Edit Local Pages with Shortcut Key",
"version": "2.0.0",
"manifest_version": 3,
"description": "Edit any pages locally by toggling contentEditable attribute with shortcut keys",
"author": "Walter Teng",
"homepage_url": "https:\/\/github.com\/davzoku",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"contextMenus",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"commands": {
"commandEditPage": {
"suggested_key": {
"default": "Alt+R"
},
"description": "Toggle contentEditable to edit page"
}
}
}