Iago - Learn Japanese through TV

Iago - Learn Japanese through TV

Immerse in your favorite TV shows and videos with Iago! Starting with Japanese!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Iago - Learn Japanese through TV",
  "version": "2023.47.0",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkoDn6urssg3aGTHzZKPSNgShe67gBKaQYwAMz7KvihN7clahC0y4cvn0gY9fwd8eJPYxFlDIGyHwqbiuSFW3zhqFgZ2HXIdle8ykBmWl2rKBFI9T3uaBPd4/0Zj55yIVio3Q7I7gJqdMPl2VRMXcUtdkO95gQvqTa23GAvWPT/qYjaj0EYtvvdrelqOkqcXbySWRF7O3nzHBwvN+KaoZSQ6qpV2Wz3SdREv5N0heDl5VjkvvQmEEEw5kEIPU3ioxypr9pRKXe8lTDdvg1xk9ci5sbgL8oQCQQQYSOTccY9vp+54sVZZYNHHl5JM5PO7dwbL177dohTm9/w6EW9coMwIDAQAB",
  "action": {
    "default_title": "Iago - Learn Japanese through subtitles",
    "default_popup": "popup.html"
  },
  "description": "Immerse in your favorite TV shows and videos with Iago! Starting with Japanese!",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "dist/youtube-content.js"
      ]
    },
    {
      "matches": [
        "https://*.disneyplus.com/*"
      ],
      "js": [
        "dist/disneyplus-content.js"
      ]
    },
    {
      "matches": [
        "https://*.netflix.com/*"
      ],
      "js": [
        "dist/netflix-content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "webRequest",
    "storage",
    "cookies",
    "scripting"
  ],
  "host_permissions": [
    "*://localhost/*",
    "https://*.getiago.com/*",
    "https://*.youtube.com/*",
    "https://*.disneyplus.com/*",
    "https://*.media.dssott.com/ps01/disney*.vtt",
    "https://*.netflix.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/fonts/*",
        "dist/img/*",
        "dist/sounds/*"
      ],
      "matches": [
        "https://*.youtube.com/*",
        "https://*.disneyplus.com/*",
        "https://*.netflix.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "https://*.getiago.com/*"
    ]
  }
}