PinyinTube

PinyinTube

PinyinTube is a Chrome extension that helps users learn languages and improve their speaking skills while watching their favorite…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PinyinTube",
  "author": "Hung Do",
  "version": "0.0.0.14",
  "icons": {
    "128": "icons/PT_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "PinyinTube",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*",
        "*://*.youtube.com/*",
        "*://*.iq.com/*",
        "*://*.viki.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ],
      "css": [
        "assets/css/contentScript.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/injected.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}