TikTok Download Buttons
Adds download buttons to TikTok videos
TikTok Download Buttonsคืออะไร?
TikTok Download Buttons เป็นส่วนขยายของ Chrome ที่พัฒนาโดย emy และคุณลักษณะหลักของมันคือ "Adds download buttons to TikTok videos"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TikTok Download Buttons
ดาวน์โหลดไฟล์ส่วนขยาย TikTok Download Buttons ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
After installing this addon, there will be download buttons on every TikTok video, allowing for easy downloading of videos. This addon has support for attempting to download non-watermarked videos. In cases where this doesn't work or the user decides not to use it, it'll download the regular, watermarked videos instead. Please keep in mind that TikTok's website is being updated fairly regularly, therefore the addon may not work all the time, but keeping it updated is a priority.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TikTok Download Buttons |
ID | kcnchleajedobajlpgkcinfcdmdnfejd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tiktok-download-buttons/kcnchleajedobajlpgkcinfcdmdnfejd |
คำอธิบาย | Adds download buttons to TikTok videos |
ขนาดไฟล์ | 34.19 KB |
จำนวนการติดตั้ง | 7,000 |
เวอร์ชันปัจจุบัน | 1.1.5 |
อัปเดตครั้งล่าสุด | 2023-07-31 |
วันที่เผยแพร่ | 2022-01-10 |
คะแนน | 4.48/5 รวมทั้งหมด 29 คะแนน |
ผู้พัฒนา | emy |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/sixem/tiktok-download-buttons |
URL หน้าช่วยเหลือ | https://github.com/sixem/tiktok-download-buttons |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TikTok Download Buttons", "description": "Adds download buttons to TikTok videos", "author": "emy", "manifest_version": 3, "version": "1.1.5", "homepage_url": "https:\/\/github.com\/sixem\/tiktok-download-buttons", "icons": { "48": "48.png", "128": "128.png" }, "action": { "default_popup": "popup.html" }, "background": { "service_worker": "service.js" }, "content_scripts": [ { "matches": [ "https:\/\/tiktok.com\/*", "https:\/\/www.tiktok.com\/*" ], "js": [ "main.js" ], "css": [ "main.css" ], "run_at": "document_idle" } ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "ruleset.json" } ] }, "permissions": [ "downloads", "storage", "declarativeNetRequestWithHostAccess" ], "host_permissions": [ "*:\/\/*.tiktok.com\/*", "https:\/\/tiktok.com\/*", "https:\/\/*.tiktokcdn.com\/*", "https:\/\/*.tiktokv.com\/*" ] } |