TikTok Download Buttons

Adds download buttons to TikTok videos

什麼是TikTok Download Buttons?

TikTok Download Buttons是由emy開發的Chrome擴展程式,該擴展的主要功能是“Adds download buttons to TikTok videos”。

擴展截圖

screenshot
screenshot

下載TikTok Download Buttons擴展crx文件

下載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 TikTok Download Buttons
ID kcnchleajedobajlpgkcinfcdmdnfejd
官方網址 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\/*"
    ]
}