Fantasy Basketball Video Replays
Watch replays of every individual statistic right on your fantasy basketball pages.
Fantasy Basketball Video Replays क्या है?
Fantasy Basketball Video Replays statreplay द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch replays of every individual statistic right on your fantasy basketball pages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fantasy Basketball Video Replays एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Do you find yourself lacking the time to watch every game for your fantasy basketball team? Is watching highlights on YouTube something you do to save time on having to watch all those games? This chrome extension is for you. Highlights (and lowlights) for fantasy basketball standard 9-cat are available directly on your Yahoo Fantasy Basketball team's page. The following stats are support on a team's page: 3PM, REB, AST, STL, BLK, and TO. Each stat will have a link to open a modal window that contains each play's video so you can watch and analyze your player's performances! v0.0.2: - Support Yahoo Fantasy Basketball Team's Page - Stats supported: 3PM, REB, AST, STL, BLK, TO Coming soon: - Support the Yahoo Fantasy Basketball Matchup's Page - Support the Yahoo Fantasy Basketball Player's List Page - Support new stats: FGM, FGA, FTM, FTA - Autoplay videos (automatically play next video)
एक्सटेंशन की मूल जानकारी
नाम | Fantasy Basketball Video Replays |
ID | lmoplljfbphlbkjhidbghfhflmjfaapm |
आधिकारिक URL | https://chromewebstore.google.com/detail/fantasy-basketball-video/lmoplljfbphlbkjhidbghfhflmjfaapm |
विवरण | Watch replays of every individual statistic right on your fantasy basketball pages. |
फ़ाइल का आकार | 352 KB |
स्थापना संख्या | 44 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2021-11-14 |
प्रकाशन तिथि | 2021-11-10 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | statreplay |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fantasy Basketball Video Replays", "description": "Watch replays of every individual statistic right on your fantasy basketball pages.", "version": "0.0.2", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/basketball.fantasysports.yahoo.com\/nba\/*" ], "css": [ ".\/static\/css\/bootstraplistgroup.css", ".\/static\/css\/modal.css", ".\/static\/css\/videojs.css" ], "js": [ ".\/static\/js\/content.js" ], "run_at": "document_end", "all_frames": true } ], "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self' data: 'unsafe-inline'; connect-src https:\/\/* data: blob: filesystem:;" }, "permissions": [ "activeTab" ], "action": { "default_popup": "index.html", "default_icon": { "16": "play-button-16.png", "32": "play-button-32.png", "48": "play-button-48.png", "128": "play-button-128.png" } }, "icons": { "16": "play-button-16.png", "32": "play-button-32.png", "48": "play-button-48.png", "128": "play-button-128.png" }, "web_accessible_resources": [ { "resources": [ "ball-triangle.svg" ], "matches": [ "https:\/\/basketball.fantasysports.yahoo.com\/*" ] } ] } |