Stoppity Poppity
Stop those irritating popups that interrupt you when you're reading.
Hvad er Stoppity Poppity?
Stoppity Poppity er en Chrome-udvidelse udviklet af yearlyglot, og dens hovedfunktion er "Stop those irritating popups that interrupt you when you're reading.".
Udvidelsesskærmbilleder
Download Stoppity Poppity-udvidelses-CRX-fil
Download Stoppity Poppity-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Stoppity Poppity |
ID | abckjldgppcaijlhpdjipckhehlpenbf |
Officiel URL | https://chromewebstore.google.com/detail/stoppity-poppity/abckjldgppcaijlhpdjipckhehlpenbf |
Beskrivelse | Stop those irritating popups that interrupt you when you're reading. |
Filstørrelse | 19.84 KB |
Antal Installationer | 327 |
Nuværende Version | 2.2 |
Senest Opdateret | 2021-07-16 |
Udgivelsesdato | 2013-06-25 |
Bedømmelse | 2.29/5 Samlet 7 Bedømmelser |
Udvikler | yearlyglot |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |