Video Captions
Video Captions
Video Captionsとは何ですか?
Video Captionsはcodeacwarsによって開発されたChromeの拡張機能で、その主な機能は「Video Captions」です。
拡張機能のスクリーンショット
Video Captions拡張機能のCRXファイルをダウンロード
Video Captions拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
As we all know, Youtube supports extended subtitles. Both the creator of the video and our ordinary viewers can create and add subtitles to the video (requires the creator's permission), so this allows many popular videos to have multilingual subtitles. Video Captions is an extension that allows the Video player to display subtitles in two languages at the same time. This plugin is very convenient for many users who like to watch videos on YouTube! Just like many American dramas where subtitles have suppressed subtitles, display double subtitles directly in your favorite videos. ######## Supported Websites ######## * YouTube ########## Bugs ########## Please DON'T report bugs by a review, Through HERE: - [email protected]
拡張機能の基本情報
名前 | Video Captions |
ID | acdlhldnonjkjomgdieacckbdcmjbpdo |
公式URL | https://chromewebstore.google.com/detail/video-captions/acdlhldnonjkjomgdieacckbdcmjbpdo |
説明 | Video Captions |
ファイルサイズ | 12.03 KB |
インストール数 | 149 |
現在のバージョン | 0.0.3 |
最終更新日 | 2020-10-12 |
公開日 | 2020-10-05 |
開発者 | codeacwars |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Captions", "manifest_version": 2, "version": "0.0.3", "description": "Video Captions", "author": "ACWars", "permissions": [ "tabs", "storage" ], "icons": { "128": "images\/tab-icon.png" }, "browser_action": { "default_title": "Video captions" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/youtube\/content.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "js\/youtube\/background.js" ], "persistent": false }, "web_accessible_resources": [ "js\/youtube\/injected.js", "js\/youtube\/xhook.min.js" ] } |