AutoEncoder: KeyForge Deck Sync Tool

AutoEncoder: KeyForge Deck Sync Tool

Tool used to automatically sync you Keyforge Master Vault with Decks of Keyforge

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AutoEncoder: KeyForge Deck Sync Tool",
  "short_name": "AutoEncoder",
  "version": "0.6",
  "description": "Tool used to automatically sync you Keyforge Master Vault with Decks of Keyforge",
  "permissions": [
    "activeTab",
    "cookies",
    "declarativeContent",
    "scripting"
  ],
  "host_permissions": [
    "https://www.keyforgegame.com/*",
    "https://decksofkeyforge.com/*",
    "https://www.thecrucible.online/*",
    "https://thecrucible.online/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.keyforgegame.com/*"
      ],
      "js": [
        "vendor/arrive.min.js",
        "content-scripts/enhanced-master-vault.js"
      ],
      "css": [
        "vendor/pure-css-drawer-menu.css",
        "vendor/ps-sans.css",
        "content-scripts/jason-theme.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/dok-icon-16x16.png",
        "img/dok-apple-touch-icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "icons": {
    "100": "icon.png"
  }
}