SignUp - Sign Language for Netflix & Disney+
This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.
Was ist SignUp - Sign Language for Netflix & Disney+?
SignUp - Sign Language for Netflix & Disney+ ist eine Chrome-Erweiterung, die von mariellasatow entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.".
Erweiterungsscreenshots
SignUp - Sign Language for Netflix & Disney+-Erweiterungs-CRX-Datei herunterladen
Laden Sie SignUp - Sign Language for Netflix & Disney+-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
Offizielle URL | https://chromewebstore.google.com/detail/signup-sign-language-for/gbllbjbhbafgdcolenjhdoabdjjbjoom |
Beschreibung | This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos. |
Dateigröße | 876 KB |
Installationsanzahl | 20,000 |
Aktuelle Version | 2.4.4 |
Letztes Update | 2024-03-01 |
Veröffentlichungsdatum | 2021-08-10 |
Bewertung | 4.68/5 Insgesamt 25 Bewertungen |
Entwickler | mariellasatow |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.signupcaptions.com/ |
Hilfeseite URL | https://www.signupcaptions.com/ |
URL der Datenschutzrichtlinien-Seite | http://aslcaptioning.com/privacy.html |
Unterstützte Sprachen | 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\/*" ] } ] } |