LM Note Generator For ESPN Fantasy Football
Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!
LM Note Generator For ESPN Fantasy Football là gì?
LM Note Generator For ESPN Fantasy Football là một tiện ích mở rộng Chrome được phát triển bởi jpmayerunc, và tính năng chính của nó là "Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!".
Ả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 LM Note Generator For ESPN Fantasy Football
Tải xuống các tệp mở rộng LM Note Generator For ESPN Fantasy Football 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
A simple tool for creating content for your public ESPN fantasy football league. To use the extension, navigate to your ESPN Fantasy Football League Home page (not your team page), and the icon should activate allowing you to launch the popup form. For more instructions check the wiki: https://github.com/jpmayer/fantasy-chrome-extension/wiki Getting Started: https://github.com/jpmayer/fantasy-chrome-extension/wiki/Getting%20Started FAQ: https://github.com/jpmayer/fantasy-chrome-extension/wiki/Frequently-Asked-Questions
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LM Note Generator For ESPN Fantasy Football |
ID | ahcblhpcealjpkmndgmkdnebbjakicno |
URL Chính Thức | https://chromewebstore.google.com/detail/lm-note-generator-for-esp/ahcblhpcealjpkmndgmkdnebbjakicno |
Mô tả | Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League! |
Kích Thước Tệp | 99.17 KB |
Số Lần Cài Đặt | 1,531 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2021-09-05 |
Ngày Phát Hành | 2018-09-12 |
Đánh Giá | 4.26/5 Tổng số 42 Đánh Giá |
Nhà Phát Triển | jpmayerunc |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jpmayer/fantasy-chrome-extension |
URL Trang Trợ Giúp | https://github.com/jpmayer/fantasy-chrome-extension/wiki |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LM Note Generator For ESPN Fantasy Football", "version": "2.0.0", "description": "Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!", "permissions": [ "activeTab", "tabs", "declarativeContent", "storage", "http:\/\/games.espn.com\/" ], "background": { "scripts": [ "js\/script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*.espn.com\/*", "https:\/\/*.espn.com\/*" ], "js": [ "vendor\/html2canvas.min.js", "js\/screenshot.js" ] } ], "web_accessible_resources": [ "js\/screenshot.js" ], "options_page": "html\/options.html", "page_action": { "default_popup": "html\/popup.html", "default_icon": { "16": "images\/LeagueManagerNoteLogo16-rounded.png", "32": "images\/LeagueManagerNoteLogo32-rounded-monotone.png", "48": "images\/LeagueManagerNoteLogo48-rounded-monotone.png", "128": "images\/LeagueManagerNoteLogo128-rounded-monotone.png" } }, "icons": { "16": "images\/LeagueManagerNoteLogo16-rounded.png", "32": "images\/LeagueManagerNoteLogo32-rounded-monotone.png", "48": "images\/LeagueManagerNoteLogo48-rounded-monotone.png", "128": "images\/LeagueManagerNoteLogo128-rounded-monotone.png" }, "manifest_version": 2 } |