YouDescribe extension for Youtube™

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

What is YouDescribe extension for Youtube™?

YouDescribe extension for Youtube™ is a Chrome extension developed by Kostiantyn Plakhotia, and its main feature is "Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.".

Extension Screenshots

screenshot

Download YouDescribe extension for Youtube™ Extension CRX File

Download YouDescribe extension for Youtube™ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name YouDescribe extension for Youtube™ YouDescribe extension for Youtube™
ID gkfdmicoabhfiikenoajdelcibhakkfc
Official URL https://chrome.google.com/webstore/detail/youdescribe-extension-for/gkfdmicoabhfiikenoajdelcibhakkfc
Description Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.
File Size 87.18 KB
Installation Count 26
Current Version 0.0.4
Last Updated 2020-01-30
Publish Date 2020-01-27
Rating 5.00/5 Total 1 Ratings
Developer Kostiantyn Plakhotia
Email [email protected]
Payment Type free
Supported Languages 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
}