YouTube subtitles viewer

An extension to view, copy and search subtitles on YouTube, with every language

什麼是YouTube subtitles viewer?

YouTube subtitles viewer是由Elia Scotto開發的Chrome擴展程式,該擴展的主要功能是“An extension to view, copy and search subtitles on YouTube, with every language”。

擴展截圖

screenshot
screenshot
screenshot

下載YouTube subtitles viewer擴展crx文件

下載YouTube subtitles viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        With this Chrome extension created for YouTube, you can view, copy and search subtitles for every video (if available).
Just open a video and click on the icon or press (Ctrl/Command+Shift+K) and the popup window will appear.
You could easily select the languages for the subtitles, select and copy all the text or navigate the video using the time links presented on the left.
The interface uses the new dark YouTube theme.

QUICK START:
1. Open a YouTube video
2. Click on the icon or use the shortcuts

Shortcuts:
Win: Ctrl+Shift+K
Mac: Command+Shift+K                    

擴展基本資訊

名稱 YouTube subtitles viewer YouTube subtitles viewer
ID ljblecifcbmcdjbabhimddlladlkfdfg
官方網址 https://chromewebstore.google.com/detail/youtube-subtitles-viewer/ljblecifcbmcdjbabhimddlladlkfdfg
簡介 An extension to view, copy and search subtitles on YouTube, with every language
檔案大小 98.48 KB
安裝次數 3,534
目前版本 1.1.0
更新時間 2020-09-22
上架時間 2020-09-21
評分 4.40/5 共 10 次評分
開發者 Elia Scotto
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/elias94/youtube-subtitles-viewer
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "An extension to view, copy and search subtitles on YouTube, with every language",
    "version": "1.1.0",
    "name": "YouTube subtitles viewer",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Youtube subtitles viewer"
    },
    "permissions": [
        "tabs",
        "storage",
        "declarativeContent"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            }
        }
    },
    "web_accessible_resources": [
        "content.styles.css",
        "icon254.png",
        "icon128.png",
        "icon48.png",
        "icon16.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}