Click and Roll

Quickly view any NBA player's stats by hovering over their name. Click and Roll analyses web pages to find the names of over 4800…

什么是Click and Roll?

Click and Roll是由http://www.clickandroll.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Quickly view any NBA player's stats by hovering over their name. Click and Roll analyses web pages to find the names of over 4800…”。

扩展截图

screenshot
screenshot
screenshot

下载Click and Roll扩展crx文件

下载Click and Roll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Quickly view any NBA player's stats by hovering over their name.

Click and Roll analyses web pages to find the names of over 4800 current and former NBA players. Hover over a player's name to see their stats.

Click and Roll's data stretches back all the way to the founding of the Basketball Association of America in 1946. Whether you're interested in George Mikan or Zion Williamson, Click and Roll has you covered.

Use the options menu in the toolbar to toggle Click and Roll on or off, globally or for individual sites.

For more details on how Click and Roll works, see https://github.com/aajfranklin/Click-And-Roll

2.1.2 Release Notes:

- Restore player thumbnail images

2.1.1 Release Notes:

- Fix scroll bar behaviour

2.1.0 Release Notes:

- Added site list management and option to use listed sites as either a whitelist or a blacklist
- Improved speed of highlighting names on initial page load

2.0.0 Release Notes:

- Support for Firefox, Opera, and Edge
- Added post season stats tab
- Added dark mode
- Fixed an issue with viewing stats for players with no career games                    

扩展基本信息

名称 Click and Roll Click and Roll
ID mkindbniefmmhpmcelmkhcpaaieeddml
官方URL https://chrome.google.com/webstore/detail/mkindbniefmmhpmcelmkhcpaaieeddml
简介 Quickly view any NBA player's stats by hovering over their name. Click and Roll analyses web pages to find the names of over 4800…
文件大小 191 KB
安装次数 1,513
当前版本 2.1.2
更新时间 2022-12-30
上架时间 2020-05-20
评分 5.00/5 共13次评分
开发者 http://www.clickandroll.co.uk
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Click and Roll",
    "version": "2.1.2",
    "icons": {
        "128": ".\/assets\/static\/clickAndRoll.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/scripts\/utils\/jquery-3.4.1.js",
                ".\/scripts\/utils\/browser-polyfill.js",
                ".\/scripts\/utils\/config.js",
                ".\/scripts\/utils\/utils.js",
                ".\/scripts\/content\/nicknameMap.js",
                ".\/scripts\/content\/ahoCorasick.js",
                ".\/scripts\/content\/resultSearch.js",
                ".\/scripts\/content\/clickAndRoll.js",
                ".\/scripts\/content\/index.js"
            ],
            "css": [
                ".\/view\/page.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            ".\/scripts\/utils\/jquery-3.4.1.js",
            ".\/scripts\/utils\/browser-polyfill.js",
            ".\/scripts\/utils\/config.js",
            ".\/scripts\/utils\/utils.js",
            ".\/scripts\/background\/playerImageRefMap.js",
            ".\/scripts\/background\/messageHandler.js",
            ".\/scripts\/background\/index.js"
        ]
    },
    "browser_action": {
        "default_icon": ".\/assets\/static\/clickAndRoll.png",
        "default_popup": ".\/view\/popup.html",
        "default_title": "Click and Roll"
    },
    "permissions": [
        "http:\/\/clickandroll.co.uk\/*",
        "http:\/\/www.clickandroll.co.uk\/*",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "view\/frame.html",
        "view\/frame.css"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}