CookiesBlock - cookie pop-ups

CookiesBlock - block cookie pop ups, notices, warning , notifications and newsletters

CookiesBlock - cookie pop-ups क्या है?

CookiesBlock - cookie pop-ups RepoGamesStudio द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "CookiesBlock - block cookie pop ups, notices, warning , notifications and newsletters"।

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

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

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

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

                        https://cookiesblock.com <- visit for free version in the future

Block pop ups and notifications from websites & browse modern websites without losing sanity


Changelog 0.11.0 23.06.2022
Fixing broken consent modals/scrollbars
Removed 'tabs' permission

Changelog 0.10.0 26.10.2021
-Fixed broken scroll for pages
-Improved hiding things
-Improved clicks finders

Changelog 0.9.2 04.10.2021
big perfo update

Changelog 0.9 01.04.2021
Tests against top 700 global websites and 250 polish websites
Added regression tests
Improved development environment

Changelog 0.8
Added welcome screen
Changed options menu
Fixed translations permission error
Fixed crucial uses-cases for backdrops and clicks

Changelog 0.7

   - optional permissions for privacy
   - explained why permission are needed
   - fixed 11 more use-cases on 200 sample pages
   - added more tests

Changelog 0.6

-Added automatic tests for 130 webpages that belong to particular families of problems
-Fixed more webpages

Blocks:
- notifications popups
- cookies warnings popups
- newsletters popups (soon)
- translations popups
- subscription popups (soon)

Works for hashed csses and iframes

Supported languages:
-EN
-PL

keywords:
How to block cookie pop ups, cookie notices, cookie warning, & how to block notifications and newsletter popups

Required permissions:
-contentSettings - blocking notifications, allowing geolocalization
-activetab - disabling popups
-tab - managing icon badges
storage - saves your options
host - used to run on every website

Optional permissions:
-privacy - blocks translation popup                    

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

नाम CookiesBlock - cookie pop-ups CookiesBlock - cookie pop-ups
ID ajkknbgennjgacpfbhdobipfhhikbldg
आधिकारिक URL https://chromewebstore.google.com/detail/cookiesblock-cookie-pop-u/ajkknbgennjgacpfbhdobipfhhikbldg
विवरण CookiesBlock - block cookie pop ups, notices, warning , notifications and newsletters
फ़ाइल का आकार 54.83 KB
स्थापना संख्या 740
वर्तमान संस्करण 0.11.0
अंतिम अपडेट 2022-06-24
प्रकाशन तिथि 2020-04-13
रेटिंग 3.73/5 कुल 11 रेटिंग्स
डेवलपर RepoGamesStudio
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://cookiesblock.com
सहायता पृष्ठ URL https://cookiesblock.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CookiesBlock - cookie pop-ups",
    "version": "0.11.0",
    "author": "RepoGamesStudio",
    "description": "CookiesBlock - block cookie pop ups, notices, warning , notifications and newsletters",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "contentSettings",
        "storage"
    ],
    "optional_permissions": [
        "privacy"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "postfill.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}