Popup Closer
This extension closes popups
什么是Popup Closer?
Popup Closer是由PowerThemes开发的Chrome扩展程序,该扩展的主要功能是“This extension closes popups”。
扩展截图
下载Popup Closer扩展crx文件
下载Popup Closer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Are you tired of popups? Want to get rid of this problem once and for all? Popup Closer will help you with this.
Instructions:
After the installation you will have the extension icon next to the address bar. If some page has popup window:
1) Click on the icon
2) Click on the popup window
3) Click on the icon again
4) Enjoy 扩展基本信息
| 名称 | |
| ID | ojgnkglnfmgpldidgmkelpdolefoijdo |
| 官方URL | https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo |
| 简介 | This extension closes popups |
| 文件大小 | 44.15 KB |
| 安装次数 | 76 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2014-12-30 |
| 上架时间 | 2014-12-30 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | PowerThemes |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Popup Closer",
"version": "0.0.1",
"manifest_version": 2,
"description": "This extension closes popups",
"background": {
"scripts": [
"background.js",
"script.js",
"off.js"
],
"persistent": false
},
"permissions": [
"activeTab"
],
"icons": {
"128": "icon1.png"
},
"browser_action": {
"default_title": "Popup Closer",
"default_icon": "icon1.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"background.js",
"script.js",
"off.js"
]
}
]
} | |