Right-click contenteditable

Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.

Right-click contenteditable là gì?

Right-click contenteditable là một tiện ích mở rộng Chrome được phát triển bởi Paulius Sasnauskas, và tính năng chính của nó là "Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.".

Ả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 Right-click contenteditable

Tải xuống các tệp mở rộng Right-click contenteditable 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

                        This extension adds a "Add contenteditable" option to the right-click menu. Upon pressing, the element, which the user was targeting gets a contenteditable attribute, so the user can edit it freely.
To remove this attribute, click the button again.

Use this to edit typos in the text when you want to read it multiple times.
Use this to make fun screenshots of pages where the text should be something else than what was typed.

More info about contenteditable:
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contenteditable                    

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

Tên Right-click contenteditable Right-click contenteditable
ID diomopkplfnggobbcphhdfkcnejdilpf
URL Chính Thức https://chromewebstore.google.com/detail/right-click-contenteditab/diomopkplfnggobbcphhdfkcnejdilpf
Mô tả Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.
Kích Thước Tệp 8.76 KB
Số Lần Cài Đặt 87
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-07-20
Ngày Phát Hành 2021-01-16
Nhà Phát Triển Paulius Sasnauskas
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/PauliusSasnauskas/contenteditableExtension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Right-click contenteditable",
    "version": "1.1",
    "description": "Right click on an element and press \"Add contenteditable\" to add a contenteditable attribute to it. Click again to remove it.",
    "author": "Paulius Sasnauskas",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}