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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouDescribe extension for Youtube™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } |