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?

Right-click contenteditable是由Paulius Sasnauskas開發的Chrome擴展程式,該擴展的主要功能是“Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.”。

擴展截圖

screenshot
screenshot

下載Right-click contenteditable擴展crx文件

下載Right-click contenteditable擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Right-click contenteditable Right-click contenteditable
ID diomopkplfnggobbcphhdfkcnejdilpf
官方網址 https://chromewebstore.google.com/detail/right-click-contenteditab/diomopkplfnggobbcphhdfkcnejdilpf
簡介 Right click on an element and press "Add contenteditable" to add a contenteditable attribute to it. Click again to remove it.
檔案大小 8.76 KB
安裝次數 87
目前版本 1.1
更新時間 2023-07-20
上架時間 2021-01-16
開發者 Paulius Sasnauskas
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/PauliusSasnauskas/contenteditableExtension
支援的語言 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"
            ]
        }
    ]
}