Video Controls for TikTok
Displays player controls for video content on TikTok.
Video Controls for TikTokคืออะไร?
Video Controls for TikTok เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://georgemike.com และคุณลักษณะหลักของมันคือ "Displays player controls for video content on TikTok."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Controls for TikTok
ดาวน์โหลดไฟล์ส่วนขยาย Video Controls for TikTok ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Displays player controls for video content on TikTok and makes it easier to download videos too! Features: - Keyboard shortcuts to: * Play/pause * Jump forward/back 5s * Increase/decrease the volume of videos * Change the playback rate from: .25x - 2x * Play videos in pop-out windows. - Remember and automatically set your last video volume level. - Auto-advance to the next video in a collection. Last updated: February 2024
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Video Controls for TikTok |
ID | epmobcfgbmjijkhpimkmjhelcjkdfcoj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/video-controls-for-tiktok/epmobcfgbmjijkhpimkmjhelcjkdfcoj |
คำอธิบาย | Displays player controls for video content on TikTok. |
ขนาดไฟล์ | 306 KB |
จำนวนการติดตั้ง | 1,025 |
เวอร์ชันปัจจุบัน | 1.0.6 |
อัปเดตครั้งล่าสุด | 2024-02-09 |
วันที่เผยแพร่ | 2020-06-07 |
คะแนน | 3.91/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | https://georgemike.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.georgemike.com/ |
URL หน้าช่วยเหลือ | https://www.georgemike.com/ |
URL หน้านโยบายความเป็นส่วนตัว | https://www.georgemike.com/chrome/privacypolicy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0.6", "name": "Video Controls for TikTok", "short_name": "Video Scrubber", "description": "Displays player controls for video content on TikTok.", "homepage_url": "https:\/\/georgemike.com", "icons": { "128": "images\/icon.128.png" }, "background": { "service_worker": "js\/background.js" }, "default_locale": "en", "options_page": "options.html", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/tiktok.com\/*", "http:\/\/*.tiktok.com\/*", "https:\/\/tiktok.com\/*", "https:\/\/*.tiktok.com\/*" ], "js": [ "lib\/progress.js-0.1.0\/progress.min.js", "js\/ActiveVideoManager.js", "js\/Util.js", "js\/VideoModifier.js", "js\/Config.js", "js\/content.js" ], "css": [ "lib\/progress.js-0.1.0\/progressjs.min.css", "css\/scrub.css" ], "all_frames": true } ], "host_permissions": [ "http:\/\/tiktok.com\/*", "http:\/\/*.tiktok.com\/*", "https:\/\/tiktok.com\/*", "https:\/\/*.tiktok.com\/*" ] } |