SignUp - Sign Language for Netflix & Disney+
This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.
What is SignUp - Sign Language for Netflix & Disney+?
SignUp - Sign Language for Netflix & Disney+ is a Chrome extension developed by mariellasatow, and its main feature is "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.".
Extension Screenshots
Download SignUp - Sign Language for Netflix & Disney+ Extension CRX File
Download SignUp - Sign Language for Netflix & Disney+ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
Official URL | 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. |
File Size | 876 KB |
Installation Count | 20,000 |
Current Version | 2.4.4 |
Last Updated | 2024-03-01 |
Publish Date | 2021-08-10 |
Rating | 4.68/5 Total 25 Ratings |
Developer | mariellasatow |
[email protected] | |
Payment Type | free |
Extension Website | https://www.signupcaptions.com/ |
Help Page URL | https://www.signupcaptions.com/ |
Privacy Policy Page URL | http://aslcaptioning.com/privacy.html |
Supported Languages | 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\/*" ] } ] } |