Stoppity Poppity
Stop those irritating popups that interrupt you when you're reading.
¿Qué es Stoppity Poppity?
Stoppity Poppity es una extensión de Chrome desarrollada por yearlyglot, y su función principal es "Stop those irritating popups that interrupt you when you're reading.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Stoppity Poppity
Descarga archivos de extensión Stoppity Poppity 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
You're reading a blog and suddenly the screen goes dark and you lose what you were reading because there's a "please subscribe" window in front of you. You're browsing for song lyrics and suddenly you lose the lyrics to an advertisement for a ringtone. Isn't it irritating? This plugin is intended to remove those irritating modal lightbox popups that interrupt you while you're trying to read a blog or a web site. Currently blocks the following types of popup: - Popup Domination - Pippity Poppity - Ringtone Maker - AdSpot - ShortTail - jqueryModal - aWeber
Información Básica de la Extensión
Nombre | Stoppity Poppity |
ID | abckjldgppcaijlhpdjipckhehlpenbf |
URL Oficial | https://chromewebstore.google.com/detail/stoppity-poppity/abckjldgppcaijlhpdjipckhehlpenbf |
Descripción | Stop those irritating popups that interrupt you when you're reading. |
Tamaño del Archivo | 19.84 KB |
Cantidad de Instalaciones | 327 |
Versión Actual | 2.2 |
Última Actualización | 2021-07-16 |
Fecha de Publicación | 2013-06-25 |
Calificación | 2.29/5 Total de 7 Calificaciones |
Desarrollador | yearlyglot |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stoppity Poppity", "description": "Stop those irritating popups that interrupt you when you're reading.", "version": "2.2", "permissions": [], "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "stoppity.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": { "19": "icon.png" }, "default_title": "A lightbox was blocked on this page" } } |