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?
LM Note Generator For ESPN Fantasy Football是由jpmayerunc開發的Chrome擴展程式,該擴展的主要功能是“Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!”。
擴展截圖
下載LM Note Generator For ESPN Fantasy Football擴展crx文件
下載LM Note Generator For ESPN Fantasy Football擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | LM Note Generator For ESPN Fantasy Football |
ID | ahcblhpcealjpkmndgmkdnebbjakicno |
官方網址 | https://chromewebstore.google.com/detail/lm-note-generator-for-esp/ahcblhpcealjpkmndgmkdnebbjakicno |
簡介 | Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League! |
檔案大小 | 99.17 KB |
安裝次數 | 1,531 |
目前版本 | 2.0.0 |
更新時間 | 2021-09-05 |
上架時間 | 2018-09-12 |
評分 | 4.26/5 共 42 次評分 |
開發者 | jpmayerunc |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/jpmayer/fantasy-chrome-extension |
說明頁面URL | https://github.com/jpmayer/fantasy-chrome-extension/wiki |
支援的語言 | 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 } |