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" ] } ] } |