YouDescribe extension for Youtube™

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

Co je YouDescribe extension for Youtube™?

YouDescribe extension for Youtube™ je rozšíření Chrome vyvinuté Kostiantyn Plakhotia, a jeho hlavní funkcí je „Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření YouDescribe extension for Youtube™

Stáhněte si soubory rozšíření YouDescribe extension for Youtube™ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název YouDescribe extension for Youtube™ YouDescribe extension for Youtube™
ID gkfdmicoabhfiikenoajdelcibhakkfc
Oficiální URL https://chrome.google.com/webstore/detail/youdescribe-extension-for/gkfdmicoabhfiikenoajdelcibhakkfc
Popis Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.
Velikost souboru 87.18 KB
Počet instalací 26
Aktuální Verze 0.0.4
Poslední Aktualizace 2020-01-30
Datum Vydání 2020-01-27
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Kostiantyn Plakhotia
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
}