YouDescribe extension for Youtube™

Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.

YouDescribe extension for Youtube™ là gì?

YouDescribe extension for Youtube™ là một tiện ích mở rộng Chrome được phát triển bởi Kostiantyn Plakhotia, và tính năng chính của nó là "Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouDescribe extension for Youtube™

Tải xuống các tệp mở rộng YouDescribe extension for Youtube™ 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

                        Accessibility helper extension for YouTube which adds link to related YouDescribe.org page.                    

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

Tên YouDescribe extension for Youtube™ YouDescribe extension for Youtube™
ID gkfdmicoabhfiikenoajdelcibhakkfc
URL Chính Thức https://chrome.google.com/webstore/detail/youdescribe-extension-for/gkfdmicoabhfiikenoajdelcibhakkfc
Mô tả Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.
Kích Thước Tệp 87.18 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2020-01-30
Ngày Phát Hành 2020-01-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Kostiantyn Plakhotia
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouDescribe extension for Youtube\u2122",
    "description": "Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.",
    "version": "0.0.4",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/api.youdescribe.org\/*"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "vue.js",
                "content_script.js"
            ],
            "css": [
                "content_style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "img\/icons8-audio-description-filled-50.png",
        "48": "img\/icons8-audio-description-filled-50.png",
        "128": "img\/icons8-audio-description-filled-50.png"
    },
    "web_accessible_resources": [
        "img\/icons8-audio-description-50.png",
        "img\/icons8-audio-description-filled-50.png",
        "template.html"
    ],
    "offline_enabled": false,
    "manifest_version": 2
}