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
官方URL 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"
            ]
        }
    ]
}