Overlay Remover Auto

Automaticaly close detected overlays.

Overlay Remover Autoとは何ですか?

Overlay Remover Autoはpeter.gurudenによって開発されたChromeの拡張機能で、その主な機能は「Automaticaly close detected overlays.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Overlay Remover Auto拡張機能のCRXファイルをダウンロード

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