Element Eraser

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

Что такое Element Eraser?

Element Eraser - это расширение Chrome, разработанное arash.out, и его основная функция - "This extension removes elements with a given class name that contain any given search terms".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Element Eraser

Скачайте файлы расширений Element Eraser в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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