Stoppity Poppity
Stop those irritating popups that interrupt you when you're reading.
什麼是Stoppity Poppity?
Stoppity Poppity是由yearlyglot開發的Chrome擴展程式,該擴展的主要功能是“Stop those irritating popups that interrupt you when you're reading.”。
擴展截圖
下載Stoppity Poppity擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | abckjldgppcaijlhpdjipckhehlpenbf |
| 官方網址 | 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"
}
} | |