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™?

YouDescribe extension for Youtube™是由Kostiantyn Plakhotia开发的Chrome扩展程序,该扩展的主要功能是“Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.”。

扩展截图

screenshot

下载YouDescribe extension for Youtube™扩展crx文件

下载YouDescribe extension for Youtube™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 YouDescribe extension for Youtube™ YouDescribe extension for Youtube™
ID gkfdmicoabhfiikenoajdelcibhakkfc
官方URL https://chrome.google.com/webstore/detail/youdescribe-extension-for/gkfdmicoabhfiikenoajdelcibhakkfc
简介 Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.
文件大小 87.18 KB
安装次数 26
当前版本 0.0.4
更新时间 2020-01-30
上架时间 2020-01-27
评分 5.00/5 共1次评分
开发者 Kostiantyn Plakhotia
电子邮箱 [email protected]
付费类型 free
支持的语言 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
}