ManabiDojo - Learn Japanese with Crunchyroll

ManabiDojo - Learn Japanese with Crunchyroll

Learn Japanese with anime using ManabiDojo!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ManabiDojo - Learn Japanese with Crunchyroll",
  "version": "1.1.10",
  "description": "Learn Japanese with anime using ManabiDojo!",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://static.crunchyroll.com/vilos-v2/web/vilos/player.html"
      ],
      "js": [
        "build/app.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://www.crunchyroll.com/*"
      ],
      "js": [
        "build/menu_icon.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "build/background.js",
    "type": "module"
  },
  "permissions": [
    "webRequest",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*.crunchyroll.com/*",
    "https://v.vrv.co/*",
    "https://eu-central-1.aws.data.mongodb-api.com/app/data-hosgs/endpoint/*",
    "https://jisho.org/api/*"
  ],
  "action": {
    "default_title": "Manabi"
  },
  "icons": {
    "16": "build/assets/icon16.png",
    "32": "build/assets/icon32.png",
    "48": "build/assets/icon48.png",
    "128": "build/assets/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "build/assets/manabi_logo.png",
        "build/assets/jisho_icon.png",
        "build/assets/jotoba_icon.svg"
      ],
      "matches": [
        "https://*.crunchyroll.com/*"
      ]
    }
  ]
}