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.
Was ist NBA Close Games?
NBA Close Games ist eine Chrome-Erweiterung, die von marcnewport entwickelt wurde, und ihr Hauptmerkmal ist "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".
Erweiterungsscreenshots
NBA Close Games-Erweiterungs-CRX-Datei herunterladen
Laden Sie NBA Close Games-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | fjjgljnmaijpilbcgbedemcnpffjkaaj |
Offizielle URL | https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj |
Beschreibung | Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off. |
Dateigröße | 17.44 KB |
Installationsanzahl | 150 |
Aktuelle Version | 2.2.1 |
Letztes Update | 2018-10-20 |
Veröffentlichungsdatum | 2018-10-20 |
Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
Entwickler | marcnewport |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://marcnewport.com |
Hilfeseite URL | https://github.com/marcnewport/nba-close-games/issues |
Unterstützte Sprachen | 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\/*" ] } |