Overlay Blocker
Stop annoying overlays from interrupting your web browsing.
Τι είναι το Overlay Blocker;
Το Overlay Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://overlayblock.com, και η κύρια λειτουργία του είναι "Stop annoying overlays from interrupting your web browsing.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Overlay Blocker
Λήψη αρχείων επέκτασης Overlay Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
"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 |
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" ] } |