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.
NBA Close Games क्या है?
NBA Close Games marcnewport द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NBA Close Games एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | fjjgljnmaijpilbcgbedemcnpffjkaaj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj |
विवरण | Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off. |
फ़ाइल का आकार | 17.44 KB |
स्थापना संख्या | 150 |
वर्तमान संस्करण | 2.2.1 |
अंतिम अपडेट | 2018-10-20 |
प्रकाशन तिथि | 2018-10-20 |
रेटिंग | 4.67/5 कुल 3 रेटिंग्स |
डेवलपर | marcnewport |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://marcnewport.com |
सहायता पृष्ठ URL | https://github.com/marcnewport/nba-close-games/issues |
समर्थित भाषाएँ | 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\/*" ] } |