Video Captions

Video Captions

什麼是Video Captions?

Video Captions是由codeacwars開發的Chrome擴展程式,該擴展的主要功能是“Video Captions”。

擴展截圖

screenshot

下載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 Video Captions
ID acdlhldnonjkjomgdieacckbdcmjbpdo
官方網址 https://chromewebstore.google.com/detail/video-captions/acdlhldnonjkjomgdieacckbdcmjbpdo
簡介 Video Captions
檔案大小 12.03 KB
安裝次數 149
目前版本 0.0.3
更新時間 2020-10-12
上架時間 2020-10-05
開發者 codeacwars
電子郵箱 [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"
    ]
}