Hide The Scores! (in NBA League Pass)
Hide all scores in the NBA League Pass game page.
Cos'è Hide The Scores! (in NBA League Pass)?
Hide The Scores! (in NBA League Pass) è un'estensione di Chrome sviluppata da jorge.silva.jetter, e la sua funzione principale è "Hide all scores in the NBA League Pass game page.".
Scarica il file CRX dell'estensione Hide The Scores! (in NBA League Pass)
Scarica i file di estensione Hide The Scores! (in NBA League Pass) 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
Hide all scores in the NBA League Pass game page. It's really annoying watching a game on NBA League Pass and seeing the score at the same time! Specially when the feed is behind and YOU NOW KNOW WHAT GOING TO HAPPEN! Fix all that by just hiding all the scores! This extension only adds one line of CSS to add the scores, so it won't make your pages load any slower or run any code at all.
Informazioni di Base sull'Estensione
Nome | |
ID | adabhlmohojcielbiknhlcmapbidbnkp |
URL Ufficiale | https://chrome.google.com/webstore/detail/hide-the-scores-in-nba-le/adabhlmohojcielbiknhlcmapbidbnkp |
Descrizione | Hide all scores in the NBA League Pass game page. |
Dimensione del File | 5.47 KB |
Conteggio Installazioni | 61 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2017-01-21 |
Data di Pubblicazione | 2017-01-21 |
Sviluppatore | jorge.silva.jetter |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide The Scores! (in NBA League Pass)", "description": "Hide all scores in the NBA League Pass game page.", "manifest_version": 2, "version": "0.0.1", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.nba.com\/*" ], "css": [ "main.css" ], "js": [ "main.js" ] } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "http:\/\/www.nba.com\/*" ] } |