Click and Roll

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…

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "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]"
    }
  }
}