Popup Blocker (strict)

Strictly block all popup requests from any website

Τι είναι το Popup Blocker (strict);

Το Popup Blocker (strict) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον yokris.dev, και η κύρια λειτουργία του είναι "Strictly block all popup requests from any website".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Popup Blocker (strict)

Λήψη αρχείων επέκτασης Popup Blocker (strict) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        It is common for streaming, shopping, and WordPress sites to open unwanted pop-ups or redirect users to ad pages. This free, open-source Chrome extension blocks all types of popups and popunders before they are issued. It pauses window opening requests for user attention. Unlike other popup and ad blocker extensions, this one blocks requests on the original page rather than closing the target pages. 

You will get badge count and optional page notification when a popup is blocked. A badge counter over the notification increments if more than one identical request is issued. For previously visited sites, the extension automatically allows or denies requests. It identifies the action based on your previous decision.

Usage Preview:
https://www.youtube.com/watch?v=Jp-RaiTHzCQ

Supported Blocking Methods:
1. window.open()
2. a[target=_blank]
3. form[submit]

What does happen if I have this extension and a website tries to open a popup?
The extension blocks this request and displays a notification on the top right side of the page. Enjoy the browse distraction-free browsing. You can:
1. Deny the request
2. Allow the request
3. Open the request in a background tab
4. Redirect the current page to the requested source

Do I still need an AdBlock extension?
This extension does not block any network request or ads like adblock extensions. It is a single-purpose extension to protect you against popups and popunders. For a better browsing experience, use this extension along with uBlock Origin. Consider it as a complementary extension to reduce distractions and disturbances.

Does this extension support keyword shortcuts?
Yes, visit "chrome://extensions/shortcuts" to configure your custom shortcuts for opening the UI or denying the last action.

Can I ask the extension not to show page notifications when a popup is blocked?
You can open the toolbar interface and mute all notifications or notifications for a single page.

Useful Links:
1. FAQs page: https://webextension.org/listing/popup-blocker.html
2. Bug Reports: https://github.com/schomery/popup-blocker/issues
3. Test your blocker's efficiency: http://tools.add0n.com/popup-blocker.html
4. Privacy Policy: https://add0n.com/policies/yokris.dev.txt

Notes:
1. This extension used to be called "Popup Blocker (ultimate)".
2. By placing your mouse over a notification, the counter stops counting so that the user can review the popup request.
3. By placing your mouse over a notification, you can get the full URL in the tooltip (when the full URL is not visible).
4. You can ignore page notifications for a site by adding the hostname to the whitelist (renamed to exception list).
5. This extension does not block overlay pop-ups like cookie messages.
6. It works offline. There are no server-side activities whatsoever                    

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

Όνομα Popup Blocker (strict) Popup Blocker (strict)
ID aefkmifgmaafnojlojpnekbpbmjiiogg
Επίσημο URL https://chromewebstore.google.com/detail/popup-blocker-strict/aefkmifgmaafnojlojpnekbpbmjiiogg
Περιγραφή Strictly block all popup requests from any website
Μέγεθος Αρχείου 142 KB
Αριθμός Εγκαταστάσεων 197,293
Τρέχουσα Έκδοση 0.8.3
Τελευταία Ενημέρωση 2024-02-20
Ημερομηνία Δημοσίευσης 2019-04-15
Αξιολόγηση 4.39/5 Συνολικά 846 Αξιολογήσεις
Προγραμματιστής yokris.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/popup-blocker.html
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/popup-blocker.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/yokris.dev.txt
Υποστηριζόμενες Γλώσσες en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Popup Blocker (strict)",
    "description": "__MSG_app_description__",
    "version": "0.8.3",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_popup": "\/data\/popup\/index.html"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/popup-blocker.html",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "options_ui": {
        "page": "\/data\/options\/index.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/ui\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": [],
        "allow-last-request": {
            "description": "__MSG_context_item2__"
        },
        "deny-last-request": {
            "description": "__MSG_context_item3__"
        },
        "background-last-request": {
            "description": "__MSG_context_item4__"
        },
        "redirect-last-request": {
            "description": "__MSG_context_item5__"
        }
    }
}