TubeMark
Bookmark and take notes on YouTube timeline.
TubeMarkคืออะไร?
TubeMark เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chaosifier และคุณลักษณะหลักของมันคือ "Bookmark and take notes on YouTube timeline."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TubeMark
ดาวน์โหลดไฟล์ส่วนขยาย TubeMark ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lhpnjmlibhnkegajheajbkcmdjglaljo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo |
คำอธิบาย | Bookmark and take notes on YouTube timeline. |
ขนาดไฟล์ | 91.5 KB |
จำนวนการติดตั้ง | 22 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2020-11-17 |
วันที่เผยแพร่ | 2020-11-13 |
คะแนน | 3.25/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | chaosifier |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/chaosifier/TubeMark |
URL หน้าช่วยเหลือ | https://github.com/chaosifier/TubeMark/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TubeMark", "description": "Bookmark and take notes on YouTube timeline.", "version": "1.0.1", "author": "Sagar Dahal", "browser_action": { "default_icon": "ic_launcher.png", "default_title": "TubeMark" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "256": "ic_launcher.png" }, "web_accessible_resources": [ "mainPage.html" ] } |