Stoppity Poppity
Stop those irritating popups that interrupt you when you're reading.
Τι είναι το Stoppity Poppity;
Το Stoppity Poppity είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον yearlyglot, και η κύρια λειτουργία του είναι "Stop those irritating popups that interrupt you when you're reading.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Stoppity Poppity
Λήψη αρχείων επέκτασης Stoppity Poppity σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Stoppity Poppity |
ID | abckjldgppcaijlhpdjipckhehlpenbf |
Επίσημο URL | https://chromewebstore.google.com/detail/stoppity-poppity/abckjldgppcaijlhpdjipckhehlpenbf |
Περιγραφή | Stop those irritating popups that interrupt you when you're reading. |
Μέγεθος Αρχείου | 19.84 KB |
Αριθμός Εγκαταστάσεων | 327 |
Τρέχουσα Έκδοση | 2.2 |
Τελευταία Ενημέρωση | 2021-07-16 |
Ημερομηνία Δημοσίευσης | 2013-06-25 |
Αξιολόγηση | 2.29/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | yearlyglot |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |