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™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kostiantyn Plakhotia, και η κύρια λειτουργία του είναι "Adds link to YouDescribe on YouTube video page. Announces to screen reader if audio description is available.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouDescribe extension for Youtube™
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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 } |