QuickEdit: Edit Local Pages with Shortcut Key
Edit any pages locally by toggling contentEditable attribute with shortcut keys
Qu'est-ce que QuickEdit: Edit Local Pages with Shortcut Key ?
QuickEdit: Edit Local Pages with Shortcut Key est une extension Chrome développée par walterteng.com, et sa fonction principale est "Edit any pages locally by toggling contentEditable attribute with shortcut keys".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension QuickEdit: Edit Local Pages with Shortcut Key
Téléchargez les fichiers d'extension QuickEdit: Edit Local Pages with Shortcut Key au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | QuickEdit: Edit Local Pages with Shortcut Key |
ID | kfgkcpcagbflnecejofneecfbcnodboh |
URL Officiel | https://chromewebstore.google.com/detail/quickedit-edit-local-page/kfgkcpcagbflnecejofneecfbcnodboh |
Description | Edit any pages locally by toggling contentEditable attribute with shortcut keys |
Taille du Fichier | 7.41 KB |
Nombre d'Installations | 47 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2023-05-04 |
Date de Publication | 2021-06-17 |
Développeur | walterteng.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |