QuickEdit: Edit Local Pages with Shortcut Key

Edit any pages locally by toggling contentEditable attribute with shortcut keys

Was ist QuickEdit: Edit Local Pages with Shortcut Key?

QuickEdit: Edit Local Pages with Shortcut Key ist eine Chrome-Erweiterung, die von walterteng.com entwickelt wurde, und ihr Hauptmerkmal ist "Edit any pages locally by toggling contentEditable attribute with shortcut keys".

Erweiterungsscreenshots

screenshot
screenshot

QuickEdit: Edit Local Pages with Shortcut Key-Erweiterungs-CRX-Datei herunterladen

Laden Sie QuickEdit: Edit Local Pages with Shortcut Key-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name QuickEdit: Edit Local Pages with Shortcut Key QuickEdit: Edit Local Pages with Shortcut Key
ID kfgkcpcagbflnecejofneecfbcnodboh
Offizielle URL https://chromewebstore.google.com/detail/quickedit-edit-local-page/kfgkcpcagbflnecejofneecfbcnodboh
Beschreibung Edit any pages locally by toggling contentEditable attribute with shortcut keys
Dateigröße 7.41 KB
Installationsanzahl 47
Aktuelle Version 1.0.0
Letztes Update 2023-05-04
Veröffentlichungsdatum 2021-06-17
Entwickler walterteng.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}