WhackAMole Ad-Blocker
WhackAMole Ad-Blocker
¿Qué es WhackAMole Ad-Blocker?
WhackAMole Ad-Blocker es una extensión de Chrome desarrollada por https://chrislaffra.com, y su función principal es "WhackAMole Ad-Blocker".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión WhackAMole Ad-Blocker
Descarga archivos de extensión WhackAMole Ad-Blocker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
WhackAMole removes ads from websites. To disable WhackAMole for a given site, click on the WhackAMole toolbar icon. When it finds content that looks like an ad, WhackAMole replaces it with an "ad" block. You can click on that to see the original content. WhackAMole never connects to a server and never inspects the data on the sites you visit. Instead, it looks for elements that look like ads and hides them using a set of builtin rules. If you disable WhackAMole for a given site, that site's URL is stored in the local browser history on your machine. Other than that, WhackAMole does not store any data, does not analyze your sites, and does not track your browsing behavior at all. Happy browsing!
Información Básica de la Extensión
Nombre | WhackAMole Ad-Blocker |
ID | nipkfonkiamhioacopolknbjdaeejchp |
URL Oficial | https://chromewebstore.google.com/detail/whackamole-ad-blocker/nipkfonkiamhioacopolknbjdaeejchp |
Descripción | WhackAMole Ad-Blocker |
Tamaño del Archivo | 41.34 KB |
Cantidad de Instalaciones | 496 |
Versión Actual | 3.10 |
Última Actualización | 2023-09-11 |
Fecha de Publicación | 2020-01-15 |
Calificación | 4.25/5 Total de 4 Calificaciones |
Desarrollador | https://chrislaffra.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://chrislaffra.com/whackamole |
URL de la Página de Ayuda | http://chrislaffra.com/whackamole |
URL de la Página de Política de Privacidad | https://chrislaffra.com/privacy.html |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhackAMole Ad-Blocker", "short_name": "WhackAMole", "description": "WhackAMole Ad-Blocker", "version": "3.10", "permissions": [ "activeTab", "storage", "scripting" ], "author": "Chris Laffra - [email protected]", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "jquery.js", "contentscript.js" ], "all_frames": true } ], "background": { "service_worker": "service_worker.js" }, "manifest_version": 3, "action": { "default_icon": { "38": "cross.png" }, "default_title": "Whack A Mole", "default_popup": "popup.html" }, "content_security_policy": [] } |