Genesyx Game Helper

Genesyx Game Helper

Игровой помощник для браузерной игры https://www.genesyx.ru/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Genesyx Game Helper",
  "version": "3.3.11",
  "description": "Игровой помощник для браузерной игры https://www.genesyx.ru/",
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "32": "img/icon32.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_popup": "html/index.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png"
  },
  "options_page": "html/index.html",
  "content_scripts": [
    {
      "matches": [
        "https://www.genesyx.ru/*"
      ],
      "all_frames": true,
      "run_at": "document_idle",
      "js": [
        "js/content_script.js"
      ],
      "css": [
        "css/content_styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "sounds/*.mp3"
  ],
  "permissions": [
    "storage",
    "notifications",
    "alarms"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{542c25da-977a-4f6a-aa0b-9d4812122df0}"
    }
  }
}