The Tale Extended

The Tale Extended

Расширение базового функционала в браузерной игре Сказка

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "The Tale Extended",
  "description": "Расширение базового функционала в браузерной игре Сказка",
  "version": "0.5.9",
  "author": "standy <[email protected]>",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "permissions": [
    "https://the-tale.org/game/*",
    "unlimitedStorage",
    "notifications"
  ],
  "web_accessible_resources": [
    "ext.js",
    "ext.css",
    "img/quest/caravan.png",
    "img/128.png"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://the-tale.org/game/",
        "https://the-tale.org/game/pvp/"
      ],
      "js": [
        "injector.js"
      ]
    }
  ]
}