SignUp - Sign Language for Netflix & Disney+
This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.
Co to jest SignUp - Sign Language for Netflix & Disney+?
SignUp - Sign Language for Netflix & Disney+ to rozszerzenie Chrome opracowane przez mariellasatow, a jego główną funkcją jest „This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SignUp - Sign Language for Netflix & Disney+
Pobierz pliki rozszerzeń SignUp - Sign Language for Netflix & Disney+ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
Oficjalny URL | https://chromewebstore.google.com/detail/signup-sign-language-for/gbllbjbhbafgdcolenjhdoabdjjbjoom |
Opis | This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos. |
Rozmiar pliku | 876 KB |
Liczba instalacji | 20,000 |
Aktualna Wersja | 2.4.4 |
Ostatnia Aktualizacja | 2024-03-01 |
Data Publikacji | 2021-08-10 |
Ocena | 4.68/5 Łącznie 25 Oceny |
Deweloper | mariellasatow |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.signupcaptions.com/ |
Adres URL Strony Pomocy | https://www.signupcaptions.com/ |
Adres URL Strony Polityki Prywatności | http://aslcaptioning.com/privacy.html |
Obsługiwane Języki | 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\/*" ] } ] } |