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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον walterteng.com, και η κύρια λειτουργία του είναι "Edit any pages locally by toggling contentEditable attribute with shortcut keys".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης QuickEdit: Edit Local Pages with Shortcut Key
Λήψη αρχείων επέκτασης 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 |
Επίσημο URL | 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" } } } |