SignUp - Sign Language for Netflix & Disney+
This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.
Qu'est-ce que SignUp - Sign Language for Netflix & Disney+ ?
SignUp - Sign Language for Netflix & Disney+ est une extension Chrome développée par mariellasatow, et sa fonction principale est "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SignUp - Sign Language for Netflix & Disney+
Téléchargez les fichiers d'extension SignUp - Sign Language for Netflix & Disney+ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
The SignUp Google Chrome Extension overlays American Sign Language (ASL), British Sign Language (BSL) and Indian Sign Language (ISL) interpretation on the streaming platforms, Disney+ and Netflix, for more accessible captioning. It is a media-accessibility tool as well as a learning tool for students of sign language. SignUp is a fun way for kids (and adults!) to enjoy mainstream movies. Please contact [email protected] if you encounter any problems
Informations de Base sur l'Extension
Nom | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
URL Officiel | https://chromewebstore.google.com/detail/signup-sign-language-for/gbllbjbhbafgdcolenjhdoabdjjbjoom |
Description | This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos. |
Taille du Fichier | 876 KB |
Nombre d'Installations | 20,000 |
Version Actuelle | 2.4.4 |
Dernière Mise à Jour | 2024-03-01 |
Date de Publication | 2021-08-10 |
Évaluation | 4.68/5 Total 25 Évaluations |
Développeur | mariellasatow |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.signupcaptions.com/ |
URL de la Page d'Aide | https://www.signupcaptions.com/ |
URL de la Page de Politique de Confidentialité | http://aslcaptioning.com/privacy.html |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.4.4", "name": "SignUp - Sign Language for Netflix & Disney+", "description": "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.", "background": { "service_worker": "build\/background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "img\/icon128.png" }, "permissions": [ "tabs", "storage" ], "icons": { "128": "img\/icon128.png", "16": "img\/icon16.png", "48": "img\/icon48.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.disneyplus.com\/*", "https:\/\/*.netflix.com\/*", "https:\/\/*.peacocktv.com\/*", "https:\/\/*.hotstar.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "jquery-1.10.2.js", "jquery-ui.min.js", "build\/contentScript.bundle.js" ], "css": [ "build\/content.styles.css" ], "run_at": "document_end" } ], "devtools_page": "build\/devtools.html", "web_accessible_resources": [ { "resources": [ "nativeVideo\/video.html", "build\/content.styles.css", "img\/*", "src\/images\/*", "youtube\/*", "fonts\/*" ], "matches": [ "https:\/\/*.disneyplus.com\/*", "https:\/\/*.netflix.com\/*", "https:\/\/*.peacocktv.com\/*", "https:\/\/*.hotstar.com\/*", "https:\/\/*.youtube.com\/*" ] } ] } |