Click and Roll

Click and Roll

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Click and Roll",
  "version": "2.1.1",
  "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"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}