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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jpmayerunc และคุณลักษณะหลักของมันคือ "Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LM Note Generator For ESPN Fantasy Football

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
}