Auto Overlay Remover

Automatic remove overlays

Auto Overlay Removerคืออะไร?

Auto Overlay Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gil gol และคุณลักษณะหลักของมันคือ "Automatic remove overlays"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Overlay Remover

ดาวน์โหลดไฟล์ส่วนขยาย Auto Overlay Remover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This lightweight extension automatically close overlay popup without the need to press on any button.

You have probably encountered in web sites you visit, the frustrating overlay which masks the page content with a transparent or semitransparent background and above it a registration form, sign up for newsletter, advertising of products, a survey and etc. 

Overlays are the next generation after the standard popup window, which has almost gone from our web world. Overlays are much trickier and can appear in a variety of ways like: on website on load even before you can see any content, after a delay, when you move your mouse, click on something or even more creative ways.

This extension is lightweight and will close for you most of the overlays without doing anything. There is no need to click or press anything for almost any overlay. You can add specific web sites to a white list, use different timing or more aggressive overlay cleaning.

The permission to read / write needed for saving the white list.
I hope that my extension will succeed to make your web surfing less frustrating and more pleasant.

In case you have questions, comments or suggestion you more than welcome to send me email to: [email protected]

what's new in version 1.0.4:
* Updated algorithm. Now, 'Auto Overlay Remover' removes overlay on more sites.

what's new in version 1.0.5:
* Enable scrolling even after the overlay site disable it.

what's new in version 1.0.6:
* Improved performance - more sites are now blocked.
* Added ability to save sites for delayed appearing of overlays.
* Added custom timer for for delaying the start of removing the overlay.

what's new in version 1.0.7:
* Bug fixed
* Some UI modifications
* Improved algorithm for more sites with overlays to be removed.
* Added "twitter" to excluded domain names.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Auto Overlay Remover Auto Overlay Remover
ID kefcbonbdcahbihclibfdeeddceiabjm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-overlay-remover/kefcbonbdcahbihclibfdeeddceiabjm
คำอธิบาย Automatic remove overlays
ขนาดไฟล์ 98.01 KB
จำนวนการติดตั้ง 10,352
เวอร์ชันปัจจุบัน 1.0.7
อัปเดตครั้งล่าสุด 2017-05-07
วันที่เผยแพร่ 2017-05-07
คะแนน 3.07/5 รวมทั้งหมด 92 คะแนน
ผู้พัฒนา gil gol
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gilgol2016/auto-overlay-remover
URL หน้าช่วยเหลือ https://github.com/gilgol2016/auto-overlay-remover/blob/master/README.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Overlay Remover",
    "description": "Automatic remove overlays",
    "version": "1.0.7",
    "manifest_version": 2,
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "*facebook*",
                "*google*",
                "*youtube*",
                "*twitter*",
                "*gmail*",
                "*apple*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/no_overlay_32.png",
            "38": "images\/no_overlay_38.png"
        },
        "default_title": "Auto removes the overlay from suspicious pages.",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/no_overlay_16.png",
        "48": "images\/no_overlay_48.png",
        "64": "images\/no_overlay_64.png",
        "128": "images\/no_overlay_128.png"
    }
}