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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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 } |