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!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

LM Note Generator For ESPN Fantasy Football 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 LM Note Generator For ESPN Fantasy Football
ID ahcblhpcealjpkmndgmkdnebbjakicno
공식 URL 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
}