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…

What is Click and Roll?

Click and Roll is a Chrome extension developed by http://www.clickandroll.co.uk, and its main feature is "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…".

Extension Screenshots

screenshot
screenshot
screenshot

Download Click and Roll Extension CRX File

Download Click and Roll extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Click and Roll Click and Roll
ID mkindbniefmmhpmcelmkhcpaaieeddml
Official URL https://chrome.google.com/webstore/detail/mkindbniefmmhpmcelmkhcpaaieeddml
Description 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…
File Size 191 KB
Installation Count 1,513
Current Version 2.1.2
Last Updated 2022-12-30
Publish Date 2020-05-20
Rating 5.00/5 Total 13 Ratings
Developer http://www.clickandroll.co.uk
Email [email protected]
Payment Type free
Supported Languages 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]"
        }
    }
}