CFV Deck Exporter

CFV Deck Exporter

Export Cardfight!! Vanguard decks from Decklog to the Cardmarket or TCGPlayer format

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CFV Deck Exporter",
  "description": "Export Cardfight!! Vanguard decks from Decklog to the Cardmarket or TCGPlayer format",
  "version": "1.4.0",
  "action": {
    "default_popup": "index.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://decklog-en.bushiroad.com/view/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ]
}