Popup Closer
This extension closes popups
Vad är Popup Closer?
Popup Closer är en Chrome-tillägg utvecklad av PowerThemes, och dess huvudfunktion är "This extension closes popups".
Tilläggsskärmbilder
Ladda ner Popup Closer-förlängningens CRX-fil
Ladda ner Popup Closer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | ojgnkglnfmgpldidgmkelpdolefoijdo |
| Officiell webbadress | https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo |
| Beskrivning | This extension closes popups |
| Filstorlek | 44.15 KB |
| Antal Installationer | 76 |
| Aktuell Version | 0.0.1 |
| Senast Uppdaterad | 2014-12-30 |
| Publiceringsdatum | 2014-12-30 |
| Betyg | 1.00/5 Totalt 1 Betyg |
| Utvecklare | PowerThemes |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |