Sagive POPUP Blocker
An attempt to build a better simpler popup blocker
Cos'è Sagive POPUP Blocker?
Sagive POPUP Blocker è un'estensione di Chrome sviluppata da Sagive SEO, e la sua funzione principale è "An attempt to build a better simpler popup blocker".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Sagive POPUP Blocker
Scarica i file di estensione Sagive POPUP Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A personal evolving popup blocker which works currently on urls entered to a list. I created this to watch videos online without the popups controlling my browser! a list of current urls i am blocking can be found here: https://goo.gl/2SQxVL Informazioni di Base sull'Estensione
| Nome | |
| ID | gcainaanppgliejbnkbepejpfepkpbbn |
| URL Ufficiale | https://chrome.google.com/webstore/detail/sagive-popup-blocker/gcainaanppgliejbnkbepejpfepkpbbn |
| Descrizione | An attempt to build a better simpler popup blocker |
| Dimensione del File | 132 KB |
| Conteggio Installazioni | 384 |
| Versione Corrente | 0.0.16 |
| Ultimo Aggiornamento | 2016-11-18 |
| Data di Pubblicazione | 2016-11-18 |
| Valutazione | 3.00/5 Totale 2 Valutazioni |
| Sviluppatore | Sagive SEO |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Sagive POPUP Blocker",
"version": "0.0.16",
"options_page": "parts\/options.html",
"description": "An attempt to build a better simpler popup blocker",
"browser_action": {
"default_popup": "parts\/popdown.html"
},
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"permissions": [
"storage",
"tabs",
"activeTab",
"windows",
"background",
"browsingData",
"webRequest",
"webRequestBlocking",
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*"
],
"js": [
"js\/content.js"
],
"css": [
"css\/styles.css"
]
}
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
}
} | |