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 |
| 公式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 |
| Eメール | [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
} | |