Remove Element

This extension will remove any element

Remove Element란 무엇입니까?

Remove Element은(는) mnetzer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will remove any element"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

확장 프로그램 기본 정보

이름 Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
공식 URL https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
설명 This extension will remove any element
파일 크기 150 KB
설치 횟수 81
현재 버전 1.0
최근 업데이트 2021-02-02
출시 날짜 2021-02-02
개발자 mnetzer
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/moishinetzer/remove-element
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}