Learn Czech with TV

Learn Czech with TV

Czech to English translation for Česká Televize. Learn Czech by watching Czech TV shows with dual Czech-English subtitles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.1",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.ceskatelevize.cz/*"
      ],
      "js": [
        "lib/jquery.min.js",
        "js/vars.js",
        "js/subtitlechecker.js",
        "js/episodechecker.js",
        "js/fullscreenchecker.js",
        "js/hover.js",
        "js/translate.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_page": "popup.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "web_accessible_resources": [
    "css/tooltip.css",
    "css/alert.css"
  ]
}