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