RemoveElement

Remove HTML elements from the right-click context menu

RemoveElement란 무엇입니까?

RemoveElement은(는) sa1hon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove HTML elements from the right-click context menu"입니다.

확장 프로그램 스크린샷

screenshot

RemoveElement 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        More easily remove elements without opening developer tools.

Right-click over the HTML element you want to delete.
You can view the tag name and size in the context menu.
And all you have to do is click it.                    

확장 프로그램 기본 정보

이름 RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
공식 URL https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
설명 Remove HTML elements from the right-click context menu
파일 크기 11.65 KB
설치 횟수 94
현재 버전 0.0.6
최근 업데이트 2023-03-02
출시 날짜 2019-12-29
개발자 sa1hon
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/saihon/remove-element
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RemoveElement",
    "version": "0.0.6",
    "description": "Remove HTML elements from the right-click context menu",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/removeElement.js"
            ]
        }
    ],
    "manifest_version": 2
}