SignUp - Sign Language for Netflix & Disney+
This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.
Cos'è SignUp - Sign Language for Netflix & Disney+?
SignUp - Sign Language for Netflix & Disney+ è un'estensione di Chrome sviluppata da mariellasatow, e la sua funzione principale è "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SignUp - Sign Language for Netflix & Disney+
Scarica i file di estensione SignUp - Sign Language for Netflix & Disney+ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
URL Ufficiale | https://chromewebstore.google.com/detail/signup-sign-language-for/gbllbjbhbafgdcolenjhdoabdjjbjoom |
Descrizione | This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos. |
Dimensione del File | 876 KB |
Conteggio Installazioni | 20,000 |
Versione Corrente | 2.4.4 |
Ultimo Aggiornamento | 2024-03-01 |
Data di Pubblicazione | 2021-08-10 |
Valutazione | 4.68/5 Totale 25 Valutazioni |
Sviluppatore | mariellasatow |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.signupcaptions.com/ |
URL della Pagina di Aiuto | https://www.signupcaptions.com/ |
URL della Pagina della Politica sulla Privacy | http://aslcaptioning.com/privacy.html |
Lingue Supportate | 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\/*" ] } ] } |