Бот Лиги Героев

Бот Лиги Героев

Единственный в своем роде автоматизатор игровой жизни в Лиге Героев.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "ru",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "short_name": "__MSG_appShortName__",
  "version": "2.1",
  "icons": {
    "16": "/img/anticaptcha-logo/16.png",
    "48": "/img/anticaptcha-logo/48.png",
    "128": "/img/anticaptcha-logo/128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "16": "/img/anticaptcha-logo/16.png",
      "32": "/img/anticaptcha-logo/32.png"
    },
    "default_popup": "options.html",
    "default_title": "Show my balance"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.fantasyland.ru/*"
      ],
      "match_about_blank": true,
      "js": [
        "/js/config.js",
        "/js/code.js",
        "/js/jquery-3.1.1.js",
        "/js/lib/mousetrap.min.js",
        "/js/lib/image_captcha_tests.js",
        "/js/methods.js",
        "/js/anticaptcha/anticaptcha.js",
        "/js/content_script/image_captcha.js",
        "/js/content_script/tainted_image.js",
        "/js/content_script/solution_post_message.js",
        "/js/content_script/api.js"
      ],
      "css": [
        "/css/content_scripts.css"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "/js/config.js",
      "/js/methods.js",
      "/js/jquery-3.1.1.js",
      "/js/background/headers.js",
      "/js/background/index.js",
      "/js/background/tainted_image.js",
      "/js/anticaptcha/anticaptcha.js",
      "/js/lib/image_response_cache.js"
    ],
    "persistent": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "/img/*",
    "/css/*",
    "/sounds/*"
  ]
}