Overlay Remover Auto

Automaticaly close detected overlays.

Что такое Overlay Remover Auto?

Overlay Remover Auto - это расширение Chrome, разработанное peter.guruden, и его основная функция - "Automaticaly close detected overlays.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Overlay Remover Auto

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

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

                        Based on Behind The Overlay extension by Nicolae Namolovan.

This extension automatically removes detected overlays on enabled websites.
Can be easily configured for specific website (by clicking the the extension button).

Some websites display delayed overlays - set timed run for these websites.
On some websites the timed run can remove more than just the overlay - in this case set the "Stop timer if overlay found" to stop after first overlay is removed.

Note on algorithm for detection: it is still default from Nicolae Namolovan - it looks for overlays in the center of the screen, so it might not detect some of the cookie notifications displayed on the bottom of the screen. I might improve that in the future.

Requires permissions: tabs (for automatic running of ora_content.js on all websites - but only runs on enabled ones), storage (for storing of settings)

Source code: https://github.com/InanZen/OverlayRemoverAuto                    

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

Название Overlay Remover Auto Overlay Remover Auto
ID bleeelcpenoboaoodilaaapgbgjdjdaj
Официальный URL https://chromewebstore.google.com/detail/overlay-remover-auto/bleeelcpenoboaoodilaaapgbgjdjdaj
Описание Automaticaly close detected overlays.
Размер файла 20.43 KB
Количество установок 2,962
Текущая Версия 1.1.1
Последнее Обновление 2019-06-29
Дата публикации 2019-06-21
Рейтинг 3.09/5 Всего 11 оценок
Разработчик peter.guruden
Тип оплаты free
Официальный сайт расширения https://github.com/InanZen/OverlayRemoverAuto
URL страницы помощи https://github.com/InanZen/OverlayRemoverAuto/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Overlay Remover Auto",
    "author": "InanZen",
    "description": "Automaticaly close detected overlays.",
    "version": "1.1.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "ora_options.html"
    },
    "background": {
        "scripts": [
            "js\/ora_background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "js\/overlay_remover.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "OverlayRemoverAuto",
        "default_popup": "ora_popup.html"
    },
    "icons": {
        "128": "images\/jalousie_open_128.png"
    }
}