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.”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | gkfdmicoabhfiikenoajdelcibhakkfc |
| 官方網址 | 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
} | |