Popup Closer
This extension closes popups
What is Popup Closer?
Popup Closer is a Chrome extension developed by PowerThemes, and its main feature is "This extension closes popups".
Extension Screenshots
Download Popup Closer Extension CRX File
Download Popup Closer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | ojgnkglnfmgpldidgmkelpdolefoijdo |
Official URL | https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo |
Description | This extension closes popups |
File Size | 44.15 KB |
Installation Count | 76 |
Current Version | 0.0.1 |
Last Updated | 2014-12-30 |
Publish Date | 2014-12-30 |
Rating | 1.00/5 Total 1 Ratings |
Developer | PowerThemes |
Payment Type | free |
Supported Languages | 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" ] } ] } |