Star Citizen CCU Game

Star Citizen CCU Game

Get a quick overview over all your ships/upgrades in your hangar and buyback, plan optimal upgrade chains.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Star Citizen CCU Game",
  "description": "Get a quick overview over all your ships/upgrades in your hangar and buyback, plan optimal upgrade chains.",
  "version": "6.0.2",
  "host_permissions": [
    "https://robertsspaceindustries.com/*",
    "https://support.robertsspaceindustries.com/hc/en-us/articles/360003093114"
  ],
  "permissions": [
    "storage",
    "cookies",
    "unlimitedStorage"
  ],
  "manifest_version": 3,
  "icons": {
    "16": "ccugame-16.png",
    "32": "ccugame-32.png",
    "128": "ccugame_128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Star Citizen CCU Game",
    "default_icon": {
      "16": "ccugame-16.png",
      "32": "ccugame-32.png",
      "128": "ccugame_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://ccugame.app/*"
      ],
      "js": [
        "ccugame-app-integration_content-script.js"
      ],
      "css": [],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self",
    "worker-src": "self"
  }
}