CaptionPop

CaptionPop

Language Learning with YouTube captions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_application_title__",
  "description": "__MSG_application_description__",
  "version": "1.0.6",
  "background": {
    "peristent": false,
    "page": "background.html"
  },
  "default_locale": "en",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "youtube-contentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.captionpop.com/*"
      ],
      "js": [
        "captionpop-contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "popcorn.svg"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}