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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}