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 je SignUp - Sign Language for Netflix & Disney+?
SignUp - Sign Language for Netflix & Disney+ je rozšíření Chrome vyvinuté mariellasatow, a jeho hlavní funkcí je „This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření SignUp - Sign Language for Netflix & Disney+
Stáhněte si soubory rozšíření SignUp - Sign Language for Netflix & Disney+ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
Oficiální URL | https://chromewebstore.google.com/detail/signup-sign-language-for/gbllbjbhbafgdcolenjhdoabdjjbjoom |
Popis | This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos. |
Velikost souboru | 876 KB |
Počet instalací | 20,000 |
Aktuální Verze | 2.4.4 |
Poslední Aktualizace | 2024-03-01 |
Datum Vydání | 2021-08-10 |
Hodnocení | 4.68/5 Celkem 25 Hodnocení |
Vývojář | mariellasatow |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.signupcaptions.com/ |
URL Stránky Nápovědy | https://www.signupcaptions.com/ |
URL Stránky Zásad Ochrany Soukromí | http://aslcaptioning.com/privacy.html |
Podporované Jazyky | 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\/*" ] } ] } |