SignUp - Sign Language for Netflix & Disney+
This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.
Apa itu SignUp - Sign Language for Netflix & Disney+?
SignUp - Sign Language for Netflix & Disney+ adalah ekstensi Chrome yang dikembangkan oleh mariellasatow, dan fitur utamanya adalah "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi SignUp - Sign Language for Netflix & Disney+
Unduh file ekstensi SignUp - Sign Language for Netflix & Disney+ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
URL Resmi | https://chromewebstore.google.com/detail/signup-sign-language-for/gbllbjbhbafgdcolenjhdoabdjjbjoom |
Deskripsi | This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos. |
Ukuran File | 876 KB |
Jumlah Instalasi | 20,000 |
Versi Saat Ini | 2.4.4 |
Terakhir Diperbarui | 2024-03-01 |
Tanggal Publikasi | 2021-08-10 |
Penilaian | 4.68/5 Total 25 Penilaian |
Pengembang | mariellasatow |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.signupcaptions.com/ |
URL Halaman Bantuan | https://www.signupcaptions.com/ |
URL Halaman Kebijakan Privasi | http://aslcaptioning.com/privacy.html |
Bahasa yang Didukung | 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\/*" ] } ] } |