YouCap

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

什麼是YouCap?

YouCap是由http://youcap.video開發的Chrome擴展程式,該擴展的主要功能是“An extension for YouCap, a community-driven alternative to YouTube's community captions.”。

擴展截圖

screenshot
screenshot
screenshot

下載YouCap擴展crx文件

下載YouCap擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        YouCap is a community-driven captioning service made to bridge the gap between content creators and users impacted by disabilities or language barriers.

With the removal of YouTube's community captions on September 28th, 2020, many viewers were left with limited access to content on the platform. The feature had offered a means for creators to provide their content to a wider audience without captioning it themselves or paying a third-party service. With its removal came a sudden need for a replacement. That's where YouCap comes in.

This extension interfaces with captions that are created through the YouCap website (http://www.youcap.video) and overlays them on top of YouTube videos, when they're available.

Currently, the platform supports English, French, and Spanish captions, with plans to expand on this list in the future.                    

擴展基本資訊

名稱 YouCap YouCap
ID bcolhilfagkeohpjnffcmflomabbbkel
官方網址 https://chrome.google.com/webstore/detail/youcap/bcolhilfagkeohpjnffcmflomabbbkel
簡介 An extension for YouCap, a community-driven alternative to YouTube's community captions.
檔案大小 29.86 KB
安裝次數 60
目前版本 0.4.1 Build
更新時間 2020-12-31
上架時間 2020-10-20
評分 3.00/5 共 2 次評分
開發者 http://youcap.video
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.youcap.video
隱私政策頁面URL http://youcap.video/pages/organization/privacy
支援的語言 en
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"
    ]
}