SignUp - Sign Language for Netflix & Disney+
This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.
SignUp - Sign Language for Netflix & Disney+ là gì?
SignUp - Sign Language for Netflix & Disney+ là một tiện ích mở rộng Chrome được phát triển bởi mariellasatow, và tính năng chính của nó là "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SignUp - Sign Language for Netflix & Disney+
Tải xuống các tệp mở rộng SignUp - Sign Language for Netflix & Disney+ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
URL Chính Thức | https://chromewebstore.google.com/detail/signup-sign-language-for/gbllbjbhbafgdcolenjhdoabdjjbjoom |
Mô tả | This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos. |
Kích Thước Tệp | 876 KB |
Số Lần Cài Đặt | 20,000 |
Phiên Bản Hiện Tại | 2.4.4 |
Cập Nhật Lần Cuối | 2024-03-01 |
Ngày Phát Hành | 2021-08-10 |
Đánh Giá | 4.68/5 Tổng số 25 Đánh Giá |
Nhà Phát Triển | mariellasatow |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.signupcaptions.com/ |
URL Trang Trợ Giúp | https://www.signupcaptions.com/ |
URL Trang Chính Sách Bảo Mật | http://aslcaptioning.com/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |