PopupBeGone
Block those annoying popups on webpages
什么是PopupBeGone?
PopupBeGone是由Gavin Song开发的Chrome扩展程序,该扩展的主要功能是“Block those annoying popups on webpages”。
扩展截图
下载PopupBeGone扩展crx文件
下载PopupBeGone扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
PopupBeGone is a chrome extension designed to automatically remove annoying popups, such as the ones that ask you to register for a newsletter, disable your adblocker or download a free e-book.
**Features**
> Automatically blocks popups on webpages.
> Quick shortcut (Ctrl-Shift-X) to kill any new popups that appear.
> Customizable whitelist, so you can enable popups on some sites.
> Fast and lightweight - Even comes with a "fast mode" so it runs smoothly on any computer.
> Fixes website usability - Re-enables scrolling, de-blurs the content and hides any covers.
> Nice and simple - All our extension does is block popups - no collecting user data or premium payments!
Works very well with other adblocking extensions.
Found a bug? Want to suggest a feature? Check out our github:
https://github.com/Gavin-Song/PopupBeGone 扩展基本信息
| 名称 | |
| ID | ndbfglcbdckpoapnkolfekbbdfpcdblj |
| 官方URL | https://chromewebstore.google.com/detail/popupbegone/ndbfglcbdckpoapnkolfekbbdfpcdblj |
| 简介 | Block those annoying popups on webpages |
| 文件大小 | 65.58 KB |
| 安装次数 | 272 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2018-02-13 |
| 上架时间 | 2018-02-13 |
| 评分 | 3.00/5 共4次评分 |
| 开发者 | Gavin Song |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PopupBeGone",
"description": "Block those annoying popups on webpages",
"version": "1.0.1",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "PopupBeGone"
},
"icons": {
"128": "img\/icon_active.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/config.js",
"js\/util.js",
"js\/detect_modal.js",
"js\/main.js",
"js\/modal_killer.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"commands": {
"popupbegone-kill-modal": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Kills the current modal on the screen."
}
},
"permissions": [
"activeTab",
"tabs",
" | |