Fantasy Points Browser Extension
League import bridge for FantasyPoints.com #ScoreMore.
什么是Fantasy Points Browser Extension?
Fantasy Points Browser Extension是由https://fantasypoints.com开发的Chrome扩展程序,该扩展的主要功能是“League import bridge for FantasyPoints.com #ScoreMore.”。
扩展截图
下载Fantasy Points Browser Extension扩展crx文件
下载Fantasy Points Browser Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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';" } } |