QuickEdit: Edit Local Pages with Shortcut Key

Edit any pages locally by toggling contentEditable attribute with shortcut keys

Vad är QuickEdit: Edit Local Pages with Shortcut Key?

QuickEdit: Edit Local Pages with Shortcut Key är en Chrome-tillägg utvecklad av walterteng.com, och dess huvudfunktion är "Edit any pages locally by toggling contentEditable attribute with shortcut keys".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner QuickEdit: Edit Local Pages with Shortcut Key-förlängningens CRX-fil

Ladda ner QuickEdit: Edit Local Pages with Shortcut Key-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn QuickEdit: Edit Local Pages with Shortcut Key QuickEdit: Edit Local Pages with Shortcut Key
ID kfgkcpcagbflnecejofneecfbcnodboh
Officiell webbadress https://chromewebstore.google.com/detail/quickedit-edit-local-page/kfgkcpcagbflnecejofneecfbcnodboh
Beskrivning Edit any pages locally by toggling contentEditable attribute with shortcut keys
Filstorlek 7.41 KB
Antal Installationer 47
Aktuell Version 1.0.0
Senast Uppdaterad 2023-05-04
Publiceringsdatum 2021-06-17
Utvecklare walterteng.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    }
}