Overlay Blocker

Stop annoying overlays from interrupting your web browsing.

Overlay Blocker란 무엇입니까?

Overlay Blocker은(는) https://overlayblock.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stop annoying overlays from interrupting your web browsing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Overlay Blocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        "Fantastic piece of innovation. Easy install too. Feels like a refreshing new internet now. Thanks!"
Amber Case

"I wander the internet a lot and these popups were bothering until a friend suggested this extension."
Chris Bailey

---

STOP ANNOYANCES FOREVER.

No more email newsletter popups, special offers, or interruptions while you read articles, browse websites, or shop. 

For example, that "subscribe to our newsletter" message you see when you visit a blog. Install Overlay Blocker and they disappear forever.

HOW DOES IT WORK?
Auto-magically. That's how. We detect good overlays and ignore them, while blocking bad overlays. We're always fine-tuning this balance and publish free updates.

WHAT ABOUT GOOD POPUPS?
We understand not every overlay is annoying and some contain useful information. Whitelist sites you like or Report a Site in one-click to our development team to check.

ALLOW GOOD POPUPS
Choose to allow an overlay to show once or always on any website. If an overlay is automatically blocked, you'll have a few seconds you can allow it to show or whitelist the website at any time to see all popups on that website forevermore.

NEVER SEE ANOTHER
- Email subscription form
- Free ebook offer
- Download or signup form
- Membership signup popup
- Social media sign-in popup
- Annoying in-your-face offers

PLANS & PRICING
Overlay Blocker has a free plan and an unlimited use plan. Try for free up to a limited number of blocks. Details: http://www.overlayblock.com 

NEED HELP?
support (at) overlayblock.com                    

확장 프로그램 기본 정보

이름 Overlay Blocker Overlay Blocker
ID inncfpkneoefpgnoggjhcnkjhbcdeimo
공식 URL https://chromewebstore.google.com/detail/overlay-blocker/inncfpkneoefpgnoggjhcnkjhbcdeimo
설명 Stop annoying overlays from interrupting your web browsing.
파일 크기 645 KB
설치 횟수 3,000
현재 버전 8.3.1
최근 업데이트 2020-09-27
출시 날짜 2016-12-17
평점 1.68/5 총 40 개의 평점
개발자 https://overlayblock.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.overlayblock.com
도움말 페이지 URL http://www.overlayblock.com/#contact
개인정보 보호 정책 페이지 URL http://www.overlayblock.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Overlay Blocker",
    "short_name": "Overlay Block",
    "description": "Stop annoying overlays from interrupting your web browsing.",
    "version": "8.3.1",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "vendor\/jquery\/jquery-2.1.3.min.js",
            "background\/utils.js",
            "background\/optionsController.js",
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "images\/enable_128.png"
        },
        "default_title": "Overlay Blocker",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/overlayRemover.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "images\/enable_128.png"
    },
    "options_page": "options\/options.html",
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "toolbar\/toolbar.html",
        "expiredMessage\/expiredMessage.html"
    ]
}