Overlay Remover Auto

Automaticaly close detected overlays.

Overlay Remover Auto क्या है?

Overlay Remover Auto peter.guruden द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automaticaly close detected overlays."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Overlay Remover Auto एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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