DFSR Lineup Tool
Save Lineups from Daily Fantasy Sports Rankings and insert them into FanDuel.
什么是DFSR Lineup Tool?
DFSR Lineup Tool是由https://www.dailyfantasysportsrankings.com开发的Chrome扩展程序,该扩展的主要功能是“Save Lineups from Daily Fantasy Sports Rankings and insert them into FanDuel.”。
扩展截图
下载DFSR Lineup Tool扩展crx文件
下载DFSR Lineup Tool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The DFSR Lineup Exporter allows you to create, save, and paste the line-ups you've created with their lineup construction tool directly into FanDuel with the click of a button. No more clicking back and forth between tabs!
扩展基本信息
名称 | DFSR Lineup Tool |
ID | bcdeldielcllliaehaoonkgalekmkmol |
官方URL | https://chromewebstore.google.com/detail/dfsr-lineup-tool/bcdeldielcllliaehaoonkgalekmkmol |
简介 | Save Lineups from Daily Fantasy Sports Rankings and insert them into FanDuel. |
文件大小 | 62.8 KB |
安装次数 | 230 |
当前版本 | 1.0.2 |
更新时间 | 2016-02-09 |
上架时间 | 2016-02-09 |
评分 | 4.88/5 共8次评分 |
开发者 | https://www.dailyfantasysportsrankings.com |
付费类型 | free |
扩展官网 | http://www.dailyfantasysportsrankings.com |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_scripts": [ { "js": [ "js\/jquery.min.js", "js\/lineup-saver.js" ], "css": [ "css\/dfsr.css" ], "matches": [ "*:\/\/www.dailyfantasysportsrankings.com\/lineup-tools\/*", "*:\/\/www.fanduel.com\/games\/*\/contests\/*\/enter", "*:\/\/localhost\/*", "*:\/\/dfsr.thinkitfirst.com\/lineup-tools\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ "js\/draftkings.js", "js\/fanduel.js" ], "externally_connectable": { "matches": [ "*:\/\/localhost\/*", "*:\/\/www.dailyfantasysportsrankings.com\/lineup-tools\/*", "*:\/\/dfsr.thinkitfirst.com\/lineup-tools\/*" ] }, "background": { "scripts": [ "js\/fonts.js", "js\/core.js" ] }, "description": "Save Lineups from Daily Fantasy Sports Rankings and insert them into FanDuel.", "name": "DFSR Lineup Tool", "version": "1.0.2", "icons": { "16": "dfsr_16.png", "48": "dfsr_48.png", "128": "dfsr_128.png" }, "permissions": [ "storage", "tabs", "*:\/\/use.typekit.net\/*", "*:\/\/fonts.googleapis.com\/*", "webRequest", "webRequestBlocking" ], "browser_action": { "default_icon": "dfsr_16.png", "default_popup": "lineups.html" }, "content_security_policy": "script-src 'self' https:\/\/use.typekit.net; object-src 'self'", "options_ui": { "page": "options.html", "chrome_style": true } } |