YouTube Captions Search
It's like 'ctrl + f' (or 'cmd + f'), but for YouTube
什麼是YouTube Captions Search?
YouTube Captions Search是由brennanmho開發的Chrome擴展程式,該擴展的主要功能是“It's like 'ctrl + f' (or 'cmd + f'), but for YouTube”。
擴展截圖
下載YouTube Captions Search擴展crx文件
下載YouTube Captions Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
HOW TO USE:
1. Go to any YouTube video that contains captions/subtitles (CC button available).
2. If the extension icon is grayed out, click on the CC button.
3. Click the extension icon to begin searching!
*** REFRESH ALREADY OPEN YOUTUBE PAGES UPON INSTALLATION IF EXTENSION IS NOT ACTIVATING ***
If you found this extension useful, please consider a small donation :).
https://www.paypal.com/paypalme/brennanho 擴展基本資訊
| 名稱 | |
| ID | kimbeggjgnmckoikpckibeoaocafcpbg |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg |
| 簡介 | It's like 'ctrl + f' (or 'cmd + f'), but for YouTube |
| 檔案大小 | 23.58 KB |
| 安裝次數 | 6,000 |
| 目前版本 | 2.1.9 |
| 更新時間 | 2020-12-15 |
| 上架時間 | 2020-06-07 |
| 評分 | 4.34/5 共 35 次評分 |
| 開發者 | brennanmho |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Captions Search",
"short_name": "YCS",
"description": "It's like 'ctrl + f' (or 'cmd + f'), but for YouTube",
"version": "2.1.9",
"permissions": [
"tabs",
"storage",
"webRequest",
"https:\/\/www.youtube.com\/api\/timedtext?*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"background": {
"scripts": [
"popup.js"
],
"persistent": true,
"run_at": "document_start"
},
"browser_action": {
"default_icon": "images\/video-player.png",
"default_popup": "popup.html"
},
"icons": {
"16": "images\/youtube-16.png",
"32": "images\/youtube-32.png",
"48": "images\/youtube-48.png",
"128": "images\/youtube-128.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+I",
"chromeos": "Ctrl+Shift+Y",
"linux": "Ctrl+Shift+Y"
}
}
},
"web_accessible_resources": [
"style.css"
]
} | |