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 là gì?

QuickEdit: Edit Local Pages with Shortcut Key là một tiện ích mở rộng Chrome được phát triển bởi walterteng.com, và tính năng chính của nó là "Edit any pages locally by toggling contentEditable attribute with shortcut keys".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng QuickEdit: Edit Local Pages with Shortcut Key

Tải xuống các tệp mở rộng QuickEdit: Edit Local Pages with Shortcut Key dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên QuickEdit: Edit Local Pages with Shortcut Key QuickEdit: Edit Local Pages with Shortcut Key
ID kfgkcpcagbflnecejofneecfbcnodboh
URL Chính Thức https://chromewebstore.google.com/detail/quickedit-edit-local-page/kfgkcpcagbflnecejofneecfbcnodboh
Mô tả Edit any pages locally by toggling contentEditable attribute with shortcut keys
Kích Thước Tệp 7.41 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-05-04
Ngày Phát Hành 2021-06-17
Nhà Phát Triển walterteng.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}