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…

Co je Click and Roll?

Click and Roll je rozšíření Chrome vyvinuté http://www.clickandroll.co.uk, a jeho hlavní funkcí je „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…“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Click and Roll

Stáhněte si soubory rozšíření Click and Roll ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Click and Roll Click and Roll
ID mkindbniefmmhpmcelmkhcpaaieeddml
Oficiální URL https://chrome.google.com/webstore/detail/mkindbniefmmhpmcelmkhcpaaieeddml
Popis 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…
Velikost souboru 191 KB
Počet instalací 1,513
Aktuální Verze 2.1.2
Poslední Aktualizace 2022-12-30
Datum Vydání 2020-05-20
Hodnocení 5.00/5 Celkem 13 Hodnocení
Vývojář http://www.clickandroll.co.uk
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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]"
        }
    }
}