PopUpOFF - Popup and overlay blocker

Removes and prevents popups, overlays and cookie notifications, other tools do not. Enjoy the original look of the internet.

Τι είναι το PopUpOFF - Popup and overlay blocker;

Το PopUpOFF - Popup and overlay blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://romanisthere.github.io, και η κύρια λειτουργία του είναι "Removes and prevents popups, overlays and cookie notifications, other tools do not. Enjoy the original look of the internet.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης PopUpOFF - Popup and overlay blocker

Λήψη αρχείων επέκτασης PopUpOFF - Popup and overlay blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Hey! Have you seen the terrific rating above? You must be wondering: “Is it finally a good popup blocker? Should I try it?” Do read the text below to find out if that's something you'd like to give a try.

So, answering your questions: “No and Yes” - it isn’t some “good” popup blocker. PopUpOFF is brilliant: https://github.com/RomanistHere/PopUpOFF/issues/16 - and you should definitely try it if you are as annoyed with popups, cookie notifications, overlays and other sticky things that overlay content as I do.

Why?

- PopUpOFF doesn’t just block some popups that other developers paid for, but YOU are in control of it. You decide not to have any single overlay on the screen or casually remove only the most annoying things (hi cookie notifications and subscription popups). 
- You can unlock and read PAID content FOR FREE on some websites (see the video above). 
- Size of this extension is 100 times less than any other average popup blocker in the store. Size doesn’t matter? Well… I wouldn't be so sure about that.
- PopUpOFF is a non-commercial and open-source project. It means no ads, no tracking, everything it has is available for you for free and forever. I am RomanistHere and I’m giving you this piece of better web. 

Drawbacks?

- It still is in development, so there could be bugs or imperfect solutions, I’m working on it solo and there are other things in the world to do. So be gentle, I created it for myself back then, but now I’m doing it for you.
- PopUpOFF is as addictive as it gets. After you start using it, there would be no way back. You were warned :)

Sounds interesting? Go get it. Write “hello” to me, share the feedback. Check what else I’m doing. There are probably other pieces of better web. Be cool, be gentle, help me make the world better. Not saying goodbye. Have a better life now :)

Useful links:

GitHub (tech description): https://github.com/RomanistHere/PopUpOFF
Changelog: https://popupoff.org/changelog
Stay updated on my projects: https://twitter.com/RomanistHere
Donate: https://popupoff.org/#donate                    

Βασικές Πληροφορίες Επέκτασης

Όνομα PopUpOFF - Popup and overlay blocker PopUpOFF - Popup and overlay blocker
ID ifnkdbpmgkdbfklnbfidaackdenlmhgh
Επίσημο URL https://chromewebstore.google.com/detail/popupoff-popup-and-overla/ifnkdbpmgkdbfklnbfidaackdenlmhgh
Περιγραφή Removes and prevents popups, overlays and cookie notifications, other tools do not. Enjoy the original look of the internet.
Μέγεθος Αρχείου 58.39 KB
Αριθμός Εγκαταστάσεων 22,990
Τρέχουσα Έκδοση 2.1.3
Τελευταία Ενημέρωση 2023-08-10
Ημερομηνία Δημοσίευσης 2020-06-29
Αξιολόγηση 4.77/5 Συνολικά 115 Αξιολογήσεις
Προγραμματιστής https://romanisthere.github.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://popupoff.org/
Διεύθυνση URL της Σελίδας Βοήθειας https://popupoff.org/submit-issue
URL της Σελίδας Πολιτικής Απορρήτου https://romanisthere.github.io/apps/policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PopUpOFF - Popup and overlay blocker",
    "short_name": "PopUpOFF",
    "version": "2.1.3",
    "description": "Removes and prevents popups, overlays and cookie notifications, other tools do not. Enjoy the original look of the internet.",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                "content\/helpers.js",
                "content\/modes.js",
                "content\/setup.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup\/popup.html",
        "default_title": "PopUpOFF - Click to open",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/stop_ads.png"
            ]
        }
    ],
    "manifest_version": 3
}