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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Edit any pages locally by toggling contentEditable attribute with shortcut keys"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में QuickEdit: Edit Local Pages with Shortcut Key एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
        }
    }
}