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.
Hvad er NBA Close Games?
NBA Close Games er en Chrome-udvidelse udviklet af marcnewport, og dens hovedfunktion er "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".
Udvidelsesskærmbilleder
Download NBA Close Games-udvidelses-CRX-fil
Download NBA Close Games-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | fjjgljnmaijpilbcgbedemcnpffjkaaj |
Officiel URL | https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj |
Beskrivelse | Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off. |
Filstørrelse | 17.44 KB |
Antal Installationer | 150 |
Nuværende Version | 2.2.1 |
Senest Opdateret | 2018-10-20 |
Udgivelsesdato | 2018-10-20 |
Bedømmelse | 4.67/5 Samlet 3 Bedømmelser |
Udvikler | marcnewport |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://marcnewport.com |
Hjælpeside-URL | https://github.com/marcnewport/nba-close-games/issues |
Understøttede Sprog | 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\/*" ] } |