Cookie Popup Blocker
Get rid of annoying cookie popups without agreeing to the terms
O que é Cookie Popup Blocker?
Cookie Popup Blocker é uma extensão do Chrome desenvolvida por http://cookiepopupblocker.com, e sua principal característica é "Get rid of annoying cookie popups without agreeing to the terms".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cookie Popup Blocker
Baixe arquivos de extensão Cookie Popup Blocker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | ibmamncbgbgjgnncigjlfchmflhdagkc |
URL Oficial | https://chrome.google.com/webstore/detail/cookie-popup-blocker/ibmamncbgbgjgnncigjlfchmflhdagkc |
Descrição | Get rid of annoying cookie popups without agreeing to the terms |
Tamanho do Arquivo | 437 KB |
Contagem de Instalações | 457 |
Versão Atual | 0.0.3 |
Última Atualização | 2021-06-16 |
Data de Publicação | 2021-05-19 |
Classificação | 2.67/5 Total de 3 Avaliações |
Desenvolvedor | http://cookiepopupblocker.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://cookiepopupblocker.carrd.co |
URL da Página de Ajuda | http://twitter.com/n4cr |
Idiomas Suportados | 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" } ] } |