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…

Was ist Click and Roll?

Click and Roll ist eine Chrome-Erweiterung, die von http://www.clickandroll.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "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…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Click and Roll-Erweiterungs-CRX-Datei herunterladen

Laden Sie Click and Roll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Click and Roll Click and Roll
ID mkindbniefmmhpmcelmkhcpaaieeddml
Offizielle URL https://chrome.google.com/webstore/detail/mkindbniefmmhpmcelmkhcpaaieeddml
Beschreibung 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…
Dateigröße 191 KB
Installationsanzahl 1,513
Aktuelle Version 2.1.2
Letztes Update 2022-12-30
Veröffentlichungsdatum 2020-05-20
Bewertung 5.00/5 Insgesamt 13 Bewertungen
Entwickler http://www.clickandroll.co.uk
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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]"
        }
    }
}