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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LM Note Generator For ESPN Fantasy Football एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}