Element Eraser

This extension removes elements with a given class name that contain any given search terms

Element Eraser란 무엇입니까?

Element Eraser은(는) arash.out에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension removes elements with a given class name that contain any given search terms"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Element Eraser is a open-source chrome extension that removes any HTML elements that contain user specified terms. 

Simply specify the "class" attribute of the HTML elements you want to remove, add some search terms and click remove.

You can enter search terms and class attributes by typing into the corresponding input box and pressing the 'ENTER' , 'TAB' or ','(comma) keys to add them to the list.

It is also possibly to store and retrieve settings using a 'key'.

Element Eraser can also run continuously if the toggle switch is flipped to ON.                    

확장 프로그램 기본 정보

이름 Element Eraser Element Eraser
ID cflkmoejpjmceaiahbjdkmehceccknce
공식 URL https://chromewebstore.google.com/detail/element-eraser/cflkmoejpjmceaiahbjdkmehceccknce
설명 This extension removes elements with a given class name that contain any given search terms
파일 크기 68.14 KB
설치 횟수 92
현재 버전 0.0.0.92
최근 업데이트 2017-07-07
출시 날짜 2017-07-07
평점 1.50/5 총 2 개의 평점
개발자 arash.out
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Element Eraser",
    "description": "This extension removes elements with a given class name that contain any given search terms",
    "short_name": "Remove unwanted content where-ever you go",
    "version": "0.0.0.92",
    "author": "Arash Outadi",
    "browser_action": {
        "default_icon": "trashCanIcon.png",
        "default_popup": "popup.html",
        "default_title": "Start removing divs"
    },
    "background": {
        "scripts": [
            "constants.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "constants.js",
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}