YouCap

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

YouCap là gì?

YouCap là một tiện ích mở rộng Chrome được phát triển bởi http://youcap.video, và tính năng chính của nó là "An extension for YouCap, a community-driven alternative to YouTube's community captions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouCap

Tải xuống các tệp mở rộng YouCap dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouCap YouCap
ID bcolhilfagkeohpjnffcmflomabbbkel
URL Chính Thức https://chrome.google.com/webstore/detail/youcap/bcolhilfagkeohpjnffcmflomabbbkel
Mô tả An extension for YouCap, a community-driven alternative to YouTube's community captions.
Kích Thước Tệp 29.86 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 0.4.1 Build
Cập Nhật Lần Cuối 2020-12-31
Ngày Phát Hành 2020-10-20
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://youcap.video
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.youcap.video
URL Trang Chính Sách Bảo Mật http://youcap.video/pages/organization/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}