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"입니다.
확장 프로그램 스크린샷
YouTube subtitles viewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | ljblecifcbmcdjbabhimddlladlkfdfg |
공식 URL | 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'" } |