Anti Popup

Remove all annoying popups.

Qu'est-ce que Anti Popup ?

Anti Popup est une extension Chrome développée par nick.031977, et sa fonction principale est "Remove all annoying popups.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Anti Popup

Téléchargez les fichiers d'extension Anti Popup au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Tired of annoying popup windows which asking for agreeing cookies? Or popups telling you to disable your ad blocker? Sometimes they even not allows you to scroll the page!
This extension remove this types of popups and re-enables scrolling functionality of the pages.
There is different options that you can specify through extension's options.
An API for getting blacklisted HTML elements (by ID and/or class name) is provided.
Sometimes extension can block popups that aren't parasite ones because they behavior is suspicious. In this case you can just disable extension - I will improve it regularly.                    

Informations de Base sur l'Extension

Nom Anti Popup Anti Popup
ID jncimfidjcmgckdflmhhafeolgcjpfgk
URL Officiel https://chromewebstore.google.com/detail/anti-popup/jncimfidjcmgckdflmhhafeolgcjpfgk
Description Remove all annoying popups.
Taille du Fichier 21.19 KB
Nombre d'Installations 125
Version Actuelle 1.1.1
Dernière Mise à Jour 2022-07-06
Date de Publication 2022-06-14
Développeur nick.031977
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anti Popup",
    "version": "1.1.1",
    "description": "Remove all annoying popups.",
    "manifest_version": 3,
    "author": "Nikolay Georgiev",
    "action": {
        "default_popup": "index.html",
        "default_title": "Anti Popup"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "clear-popups.js"
            ]
        }
    ],
    "icons": {
        "16": "ap16.png",
        "32": "ap32.png",
        "48": "ap48.png",
        "128": "ap128.png"
    }
}