TikTok Player

Adds a player to control TikTok videos.

TikTok Playerคืออะไร?

TikTok Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Voiture และคุณลักษณะหลักของมันคือ "Adds a player to control TikTok videos."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TikTok Player

ดาวน์โหลดไฟล์ส่วนขยาย TikTok Player ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Adds much needs video player controls to TikTok videos on the web.
This adds a player below the videos to allow you to:
- Pause/Play
- See the current video time
- See the video's duration
- Use a seekbar to see how far into the video you are and jump to a specific time
- Mute/Unmute
- Set a volume
- Save your volume setting between videos (no more super loud tik toks blasting out your ears)
- Fullscreen
... and I am considering adding more features!

Version 1.1.3
- Fixed player not loading on some pages, and prevented site from locking video volume to 80%

Version 1.1.2
- Added option to toggle looping

Version 1.1.1
- Changed menu popup to close when clicking away, in addition to clicking the button for it again.
- Added Copy Link button.  This link is without all the tracking info that is added when copying the link on the site.
- Fixed an issue where the Play in Background setting wasn't applying in all cases.

Version 1.1.0
- Changed volume slider more compact by making it vertical and show up when hovering over the volume area
- Added options menu with more features
- Added setting for playback speed, as slow as 0.25x speed and as fast as 3x speed.  Like everything else, it will remember you speed preference
- Added setting to allow video to continue playing when switching tabs
- Added button to download TikTok                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TikTok Player TikTok Player
ID bffcopaklpmddjccmkgkjcloeealljjn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tiktok-player/bffcopaklpmddjccmkgkjcloeealljjn
คำอธิบาย Adds a player to control TikTok videos.
ขนาดไฟล์ 31.42 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 1.1.3
อัปเดตครั้งล่าสุด 2021-08-18
วันที่เผยแพร่ 2021-02-27
คะแนน 4.67/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Voiture
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TikTok Player",
    "version": "1.1.3",
    "description": "Adds a player to control TikTok videos.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tiktok.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/tiktokPlayerIcon16.png",
        "32": "icons\/tiktokPlayerIcon32.png",
        "48": "icons\/tiktokPlayerIcon48.png",
        "64": "icons\/tiktokPlayerIcon64.png",
        "128": "icons\/tiktokPlayerIcon128.png"
    }
}