ShutUpHLTV
Silences some annoying ads on the site
Cos'è ShutUpHLTV?
ShutUpHLTV è un'estensione di Chrome sviluppata da ncla, e la sua funzione principale è "Silences some annoying ads on the site".
Scarica il file CRX dell'estensione ShutUpHLTV
Scarica i file di estensione ShutUpHLTV 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
- Blocks site from opening new tabs when you click on the background ad
- Removes/hides ads that are custom made to avoid common ad-blocking blacklists
- Removes 'Sponsors' blocks
The code is open source, free for anyone to look and contribute
https://github.com/ncla/ShutUpHLTV/ Informazioni di Base sull'Estensione
| Nome | |
| ID | khpkkmidcgmonalkkmhopbbnndeijebi |
| URL Ufficiale | https://chromewebstore.google.com/detail/shutuphltv/khpkkmidcgmonalkkmhopbbnndeijebi |
| Descrizione | Silences some annoying ads on the site |
| Dimensione del File | 33.08 KB |
| Conteggio Installazioni | 117 |
| Versione Corrente | 1.0.4 |
| Ultimo Aggiornamento | 2016-09-19 |
| Data di Pubblicazione | 2016-09-19 |
| Valutazione | 5.00/5 Totale 11 Valutazioni |
| Sviluppatore | ncla |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ShutUpHLTV",
"version": "1.0.4",
"manifest_version": 2,
"description": "Silences some annoying ads on the site",
"homepage_url": "http:\/\/github.com\/ncla\/ShutUpHLTV",
"permissions": [
"*:\/\/*.hltv.org\/*",
"webRequest",
"webRequestBlocking",
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.hltv.org\/*"
],
"js": [
"vendors\/jquery\/jquery-2.1.4.min.js",
"contentscript.js"
],
"run_at": "document_start"
}
]
} | |