Displayer None

Remove the highest Z-Index one at a time

Что такое Displayer None?

Displayer None - это расширение Chrome, разработанное Unknown, и его основная функция - "Remove the highest Z-Index one at a time".

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

screenshot

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

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

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

                        Remove blocking layers / paywall prompts by changing the CSS of an element to hidden with a click.
Each time you click the icon the element with the highest Z-Index will be removed from the page                    

Основная информация о расширении

Название Displayer None Displayer None
ID fognccpdledbhjeadojefhaejnkdclni
Официальный URL https://chromewebstore.google.com/detail/displayer-none/fognccpdledbhjeadojefhaejnkdclni
Описание Remove the highest Z-Index one at a time
Размер файла 63.5 KB
Количество установок 18
Текущая Версия 0.1.0
Последнее Обновление 2019-09-07
Дата публикации 2019-09-03
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Displayer None",
    "version": "0.1.0",
    "description": "Remove the highest Z-Index one at a time",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "logo.png"
    },
    "icons": {
        "128": "logo.png",
        "16": "logo.png",
        "48": "logo.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}