QuickEdit: Edit Local Pages with Shortcut Key
Edit any pages locally by toggling contentEditable attribute with shortcut keys
什麼是QuickEdit: Edit Local Pages with Shortcut Key?
QuickEdit: Edit Local Pages with Shortcut Key是由walterteng.com開發的Chrome擴展程式,該擴展的主要功能是“Edit any pages locally by toggling contentEditable attribute with shortcut keys”。
擴展截圖
下載QuickEdit: Edit Local Pages with Shortcut Key擴展crx文件
下載QuickEdit: Edit Local Pages with Shortcut Key擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
QuickEdit makes any pages editable locally by adding the contentEditable attribute to the HTML. Any changes are not permanent and will be reverted when the page is reloaded. QuickEdit is meant for developers and designers who need to do occasional test edits on the front end without any commitments. QuickEdit can be accessed via shortcut keys (ALT+R) or through the context menu. The shortcut key is also configurable via the chrome extensions shortcut menu.
擴展基本資訊
名稱 | QuickEdit: Edit Local Pages with Shortcut Key |
ID | kfgkcpcagbflnecejofneecfbcnodboh |
官方網址 | https://chromewebstore.google.com/detail/quickedit-edit-local-page/kfgkcpcagbflnecejofneecfbcnodboh |
簡介 | Edit any pages locally by toggling contentEditable attribute with shortcut keys |
檔案大小 | 7.41 KB |
安裝次數 | 47 |
目前版本 | 1.0.0 |
更新時間 | 2023-05-04 |
上架時間 | 2021-06-17 |
開發者 | walterteng.com |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "QuickEdit: Edit Local Pages with Shortcut Key", "version": "1.0.0", "manifest_version": 2, "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" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "commands": { "commandEditPage": { "suggested_key": { "default": "Alt+R" }, "description": "Toggle contentEditable to edit page" } } } |