NBA Close Games
Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
Cos'è NBA Close Games?
NBA Close Games è un'estensione di Chrome sviluppata da marcnewport, e la sua funzione principale è "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NBA Close Games
Scarica i file di estensione NBA Close Games 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 chrome extension for http://watch.nba.com that highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
Informazioni di Base sull'Estensione
Nome | |
ID | fjjgljnmaijpilbcgbedemcnpffjkaaj |
URL Ufficiale | https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj |
Descrizione | Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off. |
Dimensione del File | 17.44 KB |
Conteggio Installazioni | 150 |
Versione Corrente | 2.2.1 |
Ultimo Aggiornamento | 2018-10-20 |
Data di Pubblicazione | 2018-10-20 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | marcnewport |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://marcnewport.com |
URL della Pagina di Aiuto | https://github.com/marcnewport/nba-close-games/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NBA Close Games", "description": "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.", "version": "2.2.1", "options_page": "options.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "icons": [ "icons\/icon.png", "icons\/icon-disabled.png" ], "default_icon": "icons\/icon-disabled.png" }, "background": { "scripts": [ "js\/background.js", "js\/utils.js", "js\/options.js", "js\/manipulate.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/watch.nba.com\/*" ], "css": [ "css\/manipulate.css" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "activeTab", "tabs", "storage", "https:\/\/stats.nba.com\/*", "https:\/\/data.nba.net\/*", "https:\/\/wikihoops.com\/*" ] } |