TikTok Download Buttons

Adds download buttons to TikTok videos

TikTok Download Buttons là gì?

TikTok Download Buttons là một tiện ích mở rộng Chrome được phát triển bởi emy, và tính năng chính của nó là "Adds download buttons to TikTok videos".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TikTok Download Buttons

Tải xuống các tệp mở rộng TikTok Download Buttons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TikTok Download Buttons TikTok Download Buttons
ID kcnchleajedobajlpgkcinfcdmdnfejd
URL Chính Thức https://chromewebstore.google.com/detail/tiktok-download-buttons/kcnchleajedobajlpgkcinfcdmdnfejd
Mô tả Adds download buttons to TikTok videos
Kích Thước Tệp 34.19 KB
Số Lần Cài Đặt 7,000
Phiên Bản Hiện Tại 1.1.5
Cập Nhật Lần Cuối 2023-07-31
Ngày Phát Hành 2022-01-10
Đánh Giá 4.48/5 Tổng số 29 Đánh Giá
Nhà Phát Triển emy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sixem/tiktok-download-buttons
URL Trang Trợ Giúp https://github.com/sixem/tiktok-download-buttons
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}