Cookie Popup Blocker
Get rid of annoying cookie popups without agreeing to the terms
Cookie Popup Blocker क्या है?
Cookie Popup Blocker http://cookiepopupblocker.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get rid of annoying cookie popups without agreeing to the terms"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cookie Popup Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Cookie Popup Blocker automatically removes annoying cookie popups that appear when you visit a page without agreeing to the terms. This package does not maintain a big white list and basically focuses on the most aggressive cookie popups that block the page with a full page popup needing you to agree before being able to view and scroll the content. In case Cookie Popup Blocker incorrectly removes part of the page, you can exclude the website from being processed by opening the extension popup and clicking Exclude This Website. This is an open source product and you can find the source code on github at: https://github.com/n4cr/cookiepopupblocker You can also follow me on twitter @n4cr.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ibmamncbgbgjgnncigjlfchmflhdagkc |
आधिकारिक URL | https://chrome.google.com/webstore/detail/cookie-popup-blocker/ibmamncbgbgjgnncigjlfchmflhdagkc |
विवरण | Get rid of annoying cookie popups without agreeing to the terms |
फ़ाइल का आकार | 437 KB |
स्थापना संख्या | 457 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2021-06-16 |
प्रकाशन तिथि | 2021-05-19 |
रेटिंग | 2.67/5 कुल 3 रेटिंग्स |
डेवलपर | http://cookiepopupblocker.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://cookiepopupblocker.carrd.co |
सहायता पृष्ठ URL | http://twitter.com/n4cr |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cookie Popup Blocker", "version": "0.0.3", "manifest_version": 2, "description": "Get rid of annoying cookie popups without agreeing to the terms", "homepage_url": "http:\/\/cookiepopupblocker.com", "icons": { "16": "icons\/cookie16.png", "48": "icons\/cookie48.png", "128": "icons\/cookie128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/cookie48.png", "default_title": "Cookie Popup Blocker", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "storage", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ], "css": [ "src\/inject\/inject.css" ], "run_at": "document_end" } ] } |