YouTabMan
A Web Extension used to control all of your YouTube tabs.
YouTabManคืออะไร?
YouTabMan เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Theenadayalan และคุณลักษณะหลักของมันคือ "A Web Extension used to control all of your YouTube tabs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTabMan
ดาวน์โหลดไฟล์ส่วนขยาย YouTabMan ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
YouTabMan is a Web Extension to control all of your currently running Youtube videos at one place. v1.3.2 - Pause button label name change fix v1.3.0 - Migrated to VueJs framework - Added loop button - Hover next button view the next song v1.2.0 - 1.2.3 - Search Event Fix - Internal Fix - Icon Update - UI Fix v1.1.0 - Replay Button Added v1.0.0 - You will be having Play/Pause/Replay, Next, Mute Control inside YouTabMan. - You can also able to close the tab if you want to. - Searching is also possible in YouTabMan
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTabMan |
ID | pfflnpdlbjjkgnelipgknanbnjafijgi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtabman/pfflnpdlbjjkgnelipgknanbnjafijgi |
คำอธิบาย | A Web Extension used to control all of your YouTube tabs. |
ขนาดไฟล์ | 45.28 KB |
จำนวนการติดตั้ง | 33 |
เวอร์ชันปัจจุบัน | 1.3.2 |
อัปเดตครั้งล่าสุด | 2019-04-02 |
วันที่เผยแพร่ | 2019-04-02 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Theenadayalan |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.theenadayalan.me |
URL หน้าช่วยเหลือ | https://github.com/theenadayalank/youtabman |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTabMan", "version": "1.3.2", "description": "A Web Extension used to control all of your YouTube tabs.", "browser_action": { "default_title": "YouTabMan", "default_popup": "index.html", "default_icon": "logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "background.js" ] } ], "icons": { "128": "logo.png" }, "permissions": [ "activeTab", "tabs", "http:\/\/*\/", "https:\/\/*\/" ] } |