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+是由mariellasatow開發的Chrome擴展程式,該擴展的主要功能是“This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.”。
擴展截圖
下載SignUp - Sign Language for Netflix & Disney+擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | gbllbjbhbafgdcolenjhdoabdjjbjoom |
| 官方網址 | 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\/*"
]
}
]
} | |