DraftKings Lineup Filler - FantasyWonder.com
Instantly fill lineup for DraftKings contests.
DraftKings Lineup Filler - FantasyWonder.com là gì?
DraftKings Lineup Filler - FantasyWonder.com là một tiện ích mở rộng Chrome được phát triển bởi https://fantasywonder.com, và tính năng chính của nó là "Instantly fill lineup for DraftKings contests.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DraftKings Lineup Filler - FantasyWonder.com
Tải xuống các tệp mở rộng DraftKings Lineup Filler - FantasyWonder.com dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Even if you play fantasy sports regularly, and know your way around DraftKings' interface, entering a lineup can be time consuming especially if you're entering multiple lineups. Luckily for you, our free Chrome extension can solve this problem effectively cutting down the time to select all the players in your lineup.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DraftKings Lineup Filler - FantasyWonder.com |
ID | opekpkkpcbgfpnificmdbgdgaibdomhk |
URL Chính Thức | https://chromewebstore.google.com/detail/draftkings-lineup-filler/opekpkkpcbgfpnificmdbgdgaibdomhk |
Mô tả | Instantly fill lineup for DraftKings contests. |
Kích Thước Tệp | 62.51 KB |
Số Lần Cài Đặt | 108 |
Phiên Bản Hiện Tại | 0.4 |
Cập Nhật Lần Cuối | 2016-01-20 |
Ngày Phát Hành | 2016-01-19 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://fantasywonder.com |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://fantasywonder.com/blog/enter-lineups-on-draftkings-faster-with-our-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DraftKings Lineup Filler - FantasyWonder.com", "description": "Instantly fill lineup for DraftKings contests.", "version": "0.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs", "https:\/\/www.draftkings.com\/" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.draftkings.com\/contest\/draftteam\/*" ], "js": [ "jquery-2.1.3.min.js", "content.js" ] } ], "web_accessible_resources": [ "script.js" ], "page_action": { "default_title": "Quick Lineup Filler - FantasyWonder.com", "default_icon": "users6.png", "default_popup": "popup.html" } } |