YouTube Captions Search
It's like 'ctrl + f' (or 'cmd + f'), but for YouTube
YouTube Captions Searchคืออะไร?
YouTube Captions Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brennanmho และคุณลักษณะหลักของมันคือ "It's like 'ctrl + f' (or 'cmd + f'), but for YouTube"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Captions Search
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| URL อย่างเป็นทางการ | 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"
]
} | |