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
拡張機能の基本情報
名前 | 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 |
Eメール | [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\/*" ] } ] } |