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によって開発されたChromeの拡張機能で、その主な機能は「Edit any pages locally by toggling contentEditable attribute with shortcut keys」です。

拡張機能のスクリーンショット

screenshot
screenshot

QuickEdit: Edit Local Pages with Shortcut Key拡張機能のCRXファイルをダウンロード

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 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
Eメール [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"
        }
    }
}