FFPlayerStatus

# FFPlayerStatus What it does: At a high level, FFPlayerStatus gathers information about your fantasy league and uses it to…

FFPlayerStatus là gì?

FFPlayerStatus là một tiện ích mở rộng Chrome được phát triển bởi ctthomas13, và tính năng chính của nó là "# FFPlayerStatus What it does: At a high level, FFPlayerStatus gathers information about your fantasy league and uses it to…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng FFPlayerStatus

Tải xuống các tệp mở rộng FFPlayerStatus 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

                        # FFPlayerStatus

What it does:

At a high level, FFPlayerStatus gathers information about your fantasy league and uses it to inject HTML into webpages that allows you to see a player's status without needing to look at your league. Take a look at the screenshot below:

http://i.imgur.com/GPaxRth.png

Update:
The plugin now works for both ESPN and Yahoo leagues.

How to use it:
When you install the plugin, a settings page will load. You'll also notice a new icon beside the URL input. You can click that and hit Settings on the window to reach the same page.
On the settings page, there are 3 important inputs:
1) Teams
This is how the plugin knows where to get its information. All you need to do here is to paste your 'My Team' URL.
i.e. if you're looking at your roster, right-click on 'My Team' towards the top, Copy link address, and paste it into the box.
Your URL should follow the pattern of: http://games.espn.com/ffl/clubhouse?leagueId=XXXXXX&teamId=X&seasonId=2016 with numbers instead of X's
After you've put your URL in, you should see your team's name show up in the table below, meaning the plugin is working. 
Important things to note:
- Nothing works without at least one team input
- You can input multiple teams, just follow the same steps for each team

2) Blacklist
Sometimes I don't want the plugin to add hover popups on certain pages. If you enter a term here, it will prevent the plugin from running on any page with that term in the URL.
So, for example, if I put 'reddit' in there, it won't load for any reddit page. However, if I put 'reddit.com/r/nfl', annotations will still show on other subreddits.

3) Custom Mappings
We love our nicknames and I wanted to be able to still get the same functionality when someone says "Big Ben" instead of Ben Roethlisberger. So, this is where you can setup your own personal mappings. Hit Add, type a nickname into the left box, and search for the player in the right box. When both fields are filled, the mapping should start working the next time you load a page.
Keep in mind... I wanted to make this fairly static once you input something. So, after you click out of a box, that field is set. You can remove the entire mapping, but you can't go back in to edit the field.

Known Issues:
- Players with the same name (looking at you, David Johnson) may show the incorrect player
- RES and other infinite scrolling sites doesn't render the plugin on new content                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FFPlayerStatus FFPlayerStatus
ID aajbnjipmkjoglbeijajekdomkonoeop
URL Chính Thức https://chrome.google.com/webstore/detail/ffplayerstatus/aajbnjipmkjoglbeijajekdomkonoeop
Mô tả # FFPlayerStatus What it does: At a high level, FFPlayerStatus gathers information about your fantasy league and uses it to…
Kích Thước Tệp 956 KB
Số Lần Cài Đặt 609
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2016-10-28
Ngày Phát Hành 2016-10-28
Đánh Giá 4.08/5 Tổng số 12 Đánh Giá
Nhà Phát Triển ctthomas13
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FFPlayerStatus",
    "version": "1.1.2",
    "icons": {
        "128": "images\/ffplayerstatus-large.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; https:\/\/platform.twitter.com; https:\/\/connect.facebook.net; object-src 'self'",
    "permissions": [
        "activeTab",
        "webNavigation",
        "tabs",
        "http:\/\/*\/",
        "alarms"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/main.css",
                "css\/font-awesome.min.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "lib\/replaceText.min.js",
                "lib\/handlebars.js",
                "lib\/underscore-min.js",
                "templates.js",
                "parser.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/games.espn.go.com\/*"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "lib\/replaceText.min.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/games.espn.go.com\/frontpage\/football"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "lib\/underscore-min.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/football.fantasysports.yahoo.com\/"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "lib\/underscore-min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "font\/FontAwesome.otf",
        "font\/fontawesome-webfont.svg",
        "font\/fontawesome-webfont.woff",
        "font\/fontawesome-webfont.woff2",
        "font\/fontawesome-webfont.eot",
        "font\/fontawesome-webfont.ttf",
        "images\/default_profile.png",
        "images\/espn.png",
        "images\/yahoo.png"
    ],
    "browser_action": {
        "default_name": "FF Player Status",
        "default_popup": "browser_action.html",
        "default_icon": "images\/ffplayerstatus-large.png"
    }
}