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.
Vad är NBA Close Games?
NBA Close Games är en Chrome-tillägg utvecklad av marcnewport, och dess huvudfunktion är "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".
Tilläggsskärmbilder
Ladda ner NBA Close Games-förlängningens CRX-fil
Ladda ner NBA Close Games-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | fjjgljnmaijpilbcgbedemcnpffjkaaj |
Officiell webbadress | https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj |
Beskrivning | Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off. |
Filstorlek | 17.44 KB |
Antal Installationer | 150 |
Aktuell Version | 2.2.1 |
Senast Uppdaterad | 2018-10-20 |
Publiceringsdatum | 2018-10-20 |
Betyg | 4.67/5 Totalt 3 Betyg |
Utvecklare | marcnewport |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://marcnewport.com |
Hjälpsida URL | https://github.com/marcnewport/nba-close-games/issues |
Stödda Språk | 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\/*" ] } |