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