NBA Close Games

Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.

NBA Close Games là gì?

NBA Close Games là một tiện ích mở rộng Chrome được phát triển bởi marcnewport, và tính năng chính của nó là "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".

Ả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 NBA Close Games

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

                        A chrome extension for http://watch.nba.com that highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.                    

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

Tên NBA Close Games NBA Close Games
ID fjjgljnmaijpilbcgbedemcnpffjkaaj
URL Chính Thức https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj
Mô tả Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
Kích Thước Tệp 17.44 KB
Số Lần Cài Đặt 150
Phiên Bản Hiện Tại 2.2.1
Cập Nhật Lần Cuối 2018-10-20
Ngày Phát Hành 2018-10-20
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển marcnewport
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://marcnewport.com
URL Trang Trợ Giúp https://github.com/marcnewport/nba-close-games/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NBA Close Games",
    "description": "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.",
    "version": "2.2.1",
    "options_page": "options.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "icons": [
            "icons\/icon.png",
            "icons\/icon-disabled.png"
        ],
        "default_icon": "icons\/icon-disabled.png"
    },
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/utils.js",
            "js\/options.js",
            "js\/manipulate.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/watch.nba.com\/*"
            ],
            "css": [
                "css\/manipulate.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/stats.nba.com\/*",
        "https:\/\/data.nba.net\/*",
        "https:\/\/wikihoops.com\/*"
    ]
}