TikTok Downloader

Download TikTok videos with the click of a single button

TikTok Downloaderคืออะไร?

TikTok Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aponventure และคุณลักษณะหลักของมันคือ "Download TikTok videos with the click of a single button"

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

screenshot
screenshot

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

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

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

                        Download TikTok videos with the click of a single button in browser and in mobile view to get hte same feel as the app.                    

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

ชื่อ TikTok Downloader TikTok Downloader
ID ghfacigpedfmpgpgmapmajhnkmdaegif
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tiktok-downloader/ghfacigpedfmpgpgmapmajhnkmdaegif
คำอธิบาย Download TikTok videos with the click of a single button
ขนาดไฟล์ 259 KB
จำนวนการติดตั้ง 1,844
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-07-11
วันที่เผยแพร่ 2020-07-11
คะแนน 2.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Aponventure
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TikTok Downloader",
    "description": "Download TikTok videos with the click of a single button",
    "version": "1.0.0",
    "short_name": "TikTokDL",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "TikTok Downloader",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tiktok.com\/@*\/video\/*",
                "https:\/\/www.tiktok.com\/@*",
                "https:\/\/www.tiktok.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab"
    ]
}