YouCap

YouCap

An extension for YouCap, a community-driven alternative to YouTube's community captions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouCap",
  "version": "0.4.1",
  "default_locale": "en",
  "description": "An extension for YouCap, a community-driven alternative to YouTube's community captions.",
  "homepage_url": "https://youcap.video",
  "icons": {
    "16": "icons/logo-16.png",
    "32": "icons/logo-32.png",
    "64": "icons/logo-64.png",
    "512": "icons/logo-512.png"
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/logo-16.png",
      "32": "icons/logo-32.png",
      "64": "icons/logo-64.png",
      "512": "icons/logo-512.png"
    },
    "default_title": "YouCap"
  },
  "background": {
    "scripts": [
      "js/bg.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/watch*",
        "*://www.youtube.com/embed*",
        "*://.youtube-nocookie.com/*"
      ],
      "css": [
        "css/youtube.css"
      ],
      "js": [
        "js/ui.js",
        "js/captions.js",
        "js/youtube.js"
      ]
    }
  ],
  "incognito": "split",
  "offline_enabled": true,
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "version_name": "0.4.1 Build",
  "web_accessible_resources": [
    "js/webpage.js",
    "css/youtube.css",
    "icons/logo-white-128.png"
  ]
}