DuelingBook Translator

DuelingBook Translator

Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DuelingBook Translator",
  "version": "1.1.2",
  "description": "Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.",
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.duelingbook.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "https://www.duelingbook.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "bdd/db_de.json",
        "bdd/db_en.json",
        "bdd/db_fr.json",
        "bdd/db_pt.json",
        "bdd/db_it.json"
      ],
      "matches": [
        "https://www.duelingbook.com/*"
      ]
    }
  ],
  "icons": {
    "16": "./icon/icon16.png",
    "48": "./icon/icon48.png",
    "128": "./icon/icon128.png"
  },
  "manifest_version": 3
}