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 |
| 官方網址 | 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"
]
}
]
} | |