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+คืออะไร?
SignUp - Sign Language for Netflix & Disney+ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mariellasatow และคุณลักษณะหลักของมันคือ "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SignUp - Sign Language for Netflix & Disney+
ดาวน์โหลดไฟล์ส่วนขยาย SignUp - Sign Language for Netflix & Disney+ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SignUp - Sign Language for Netflix & Disney+ |
ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/signup-sign-language-for/gbllbjbhbafgdcolenjhdoabdjjbjoom |
คำอธิบาย | This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos. |
ขนาดไฟล์ | 876 KB |
จำนวนการติดตั้ง | 20,000 |
เวอร์ชันปัจจุบัน | 2.4.4 |
อัปเดตครั้งล่าสุด | 2024-03-01 |
วันที่เผยแพร่ | 2021-08-10 |
คะแนน | 4.68/5 รวมทั้งหมด 25 คะแนน |
ผู้พัฒนา | mariellasatow |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.signupcaptions.com/ |
URL หน้าช่วยเหลือ | https://www.signupcaptions.com/ |
URL หน้านโยบายความเป็นส่วนตัว | http://aslcaptioning.com/privacy.html |
ภาษาที่รองรับ | 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\/*" ] } ] } |