Anti Popup

Remove all annoying popups.

Anti Popup क्या है?

Anti Popup nick.031977 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove all annoying popups."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Anti Popup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Anti Popup Anti Popup
ID jncimfidjcmgckdflmhhafeolgcjpfgk
आधिकारिक URL https://chromewebstore.google.com/detail/anti-popup/jncimfidjcmgckdflmhhafeolgcjpfgk
विवरण Remove all annoying popups.
फ़ाइल का आकार 21.19 KB
स्थापना संख्या 125
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2022-07-06
प्रकाशन तिथि 2022-06-14
डेवलपर nick.031977
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}