Stoppity Poppity
Stop those irritating popups that interrupt you when you're reading.
O que é Stoppity Poppity?
Stoppity Poppity é uma extensão do Chrome desenvolvida por yearlyglot, e sua principal característica é "Stop those irritating popups that interrupt you when you're reading.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Stoppity Poppity
Baixe arquivos de extensão Stoppity Poppity 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
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
Informações Básicas da Extensão
Nome | Stoppity Poppity |
ID | abckjldgppcaijlhpdjipckhehlpenbf |
URL Oficial | https://chromewebstore.google.com/detail/stoppity-poppity/abckjldgppcaijlhpdjipckhehlpenbf |
Descrição | Stop those irritating popups that interrupt you when you're reading. |
Tamanho do Arquivo | 19.84 KB |
Contagem de Instalações | 327 |
Versão Atual | 2.2 |
Última Atualização | 2021-07-16 |
Data de Publicação | 2013-06-25 |
Classificação | 2.29/5 Total de 7 Avaliações |
Desenvolvedor | yearlyglot |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |