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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}