Fantasy Points Browser Extension
League import bridge for FantasyPoints.com #ScoreMore.
Fantasy Points Browser Extension क्या है?
Fantasy Points Browser Extension https://fantasypoints.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "League import bridge for FantasyPoints.com #ScoreMore."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fantasy Points Browser Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The Fantasy Points Browser Extension serves as an authentication bridge between your fantasy leagues and Fantasy Points. Once installed you can import leagues from ESPN, CBS, NFL and more at FantasyPoints.com.
एक्सटेंशन की मूल जानकारी
नाम | Fantasy Points Browser Extension |
ID | acacbbhfboldggccadfeopfbliabpock |
आधिकारिक URL | https://chromewebstore.google.com/detail/fantasy-points-browser-ex/acacbbhfboldggccadfeopfbliabpock |
विवरण | League import bridge for FantasyPoints.com #ScoreMore. |
फ़ाइल का आकार | 46.38 KB |
स्थापना संख्या | 2,771 |
वर्तमान संस्करण | 2.0.1 |
अंतिम अपडेट | 2023-09-18 |
प्रकाशन तिथि | 2021-08-22 |
डेवलपर | https://fantasypoints.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.fantasypoints.com |
सहायता पृष्ठ URL | https://support.fantasypoints.com |
गोपनीयता नीति पृष्ठ URL | https://www.fantasypoints.com/privacy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fantasy Points Browser Extension", "description": "League import bridge for FantasyPoints.com #ScoreMore.", "version": "2.0.1", "short_name": "FPBE", "homepage_url": "https:\/\/www.fantasypoints.com", "manifest_version": 3, "icons": { "16": "icon\/16.png", "19": "icon\/19.png", "32": "icon\/38.png", "38": "icon\/38.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "action": { "default_popup": "src\/popup.html", "default_title": "Fantasy Points", "default_icon": { "19": "icon\/19.png", "38": "icon\/38.png" } }, "background": { "service_worker": "src\/background.js" }, "permissions": [ "scripting", "tabs", "cookies", "storage" ], "host_permissions": [ "*:\/\/*.nfl.com\/*", "*:\/\/*.espn.com\/*", "*:\/\/*.cbssports.com\/*", "http:\/\/localhost\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.nfl.com\/*", "*:\/\/*.espn.com\/*", "*:\/\/*.cbssports.com\/*", "*:\/\/*.fantasypoints.com\/*" ], "js": [ "src\/content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "img\/logo-wordmark-gray-black.svg" ], "matches": [ "*:\/\/*\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http:\/\/localhost:*; object-src 'self';" } } |