DOM Destroyer

Delete anything on a website with a click.

DOM Destroyer란 무엇입니까?

DOM Destroyer은(는) Phil Schleihauf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Delete anything on a website with a click."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        DOM Destroyer empowers you to remove anything that annoys you from a web page by just clicking on it. Get rid of newsletter popups, content-hiding overlays, and all kinds of other noisy clutter!

Note that this extension only temporarily hides elements from your view -- to get them back, just refresh the page.                    

확장 프로그램 기본 정보

이름 DOM Destroyer DOM Destroyer
ID cgkjfaoibdibeghgeplabcbineebklgf
공식 URL https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf
설명 Delete anything on a website with a click.
파일 크기 12.62 KB
설치 횟수 2,836
현재 버전 0.3
최근 업데이트 2021-03-29
출시 날짜 2014-02-25
평점 3.76/5 총 17 개의 평점
개발자 Phil Schleihauf
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://github.com/uniphil/dom-destroyer
도움말 페이지 URL http://github.com/uniphil/dom-destroyer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DOM Destroyer",
    "description": "Delete anything on a website with a click.",
    "version": "0.3",
    "browser_action": {
        "default_title": "Destroy DOM",
        "default_icon": "destroy_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "toggle-armed": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Toggle DOM destruction mode"
        }
    },
    "homepage_url": "http:\/\/github.com\/uniphil\/dom-destroyer"
}