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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Click and Roll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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]"
        }
    }
}