Listen and Repeat - Language Learning

Listen and Repeat - Language Learning

Learn a new language on Youtube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "0.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.min.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*.youtube.com/*",
    "http://localhost:5000/*"
  ],
  "icons": {
    "16": "image/logo/16x16.png",
    "24": "image/logo/24x24.png",
    "32": "image/logo/32x32.png",
    "48": "image/logo/48x48.png",
    "64": "image/logo/64x64.png",
    "128": "image/logo/128x128.png",
    "256": "image/logo/256x256.png",
    "512": "image/logo/512x512.png"
  },
  "action": {
    "default_icon": {
      "16": "image/logo-gray/16x16.png",
      "24": "image/logo-gray/24x24.png",
      "32": "image/logo-gray/32x32.png",
      "48": "image/logo-gray/48x48.png",
      "64": "image/logo-gray/64x64.png",
      "128": "image/logo-gray/128x128.png",
      "256": "image/logo-gray/256x256.png",
      "512": "image/logo-gray/512x512.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "main.min.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    },
    {
      "resources": [
        "css/*"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    },
    {
      "resources": [
        "image/*"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "content.min.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    },
    {
      "js": [
        "external.min.js"
      ],
      "matches": [
        "http://localhost:5000/*"
      ]
    }
  ]
}