Gladiatus Time Saver V3

Gladiatus Time Saver V3

Save your time on playing gladiatus!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gladiatus Time Saver V3",
  "short_name": "GTS",
  "version": "3.3.2",
  "description": "Save your time on playing gladiatus!",
  "author": "Khanh Nguyen",
  "minimum_chrome_version": "88.0",
  "icons": {
    "16": "assets/icons/icon_16.png",
    "48": "assets/icons/icon_48.png",
    "128": "assets/icons/icon_128.png"
  },
  "background": {
    "service_worker": "service-worker-wrapper.js"
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.gladiatus.gameforge.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.gladiatus.gameforge.com/*"
      ],
      "js": [
        "sources/inject.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/*",
        "sources/*"
      ],
      "matches": [
        "https://*.gladiatus.gameforge.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "host_permissions": [
    "https://*.gladiatus.gameforge.com/*"
  ]
}