TikTok Download Buttons

Adds download buttons to TikTok videos

TikTok Download Buttons क्या है?

TikTok Download Buttons emy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds download buttons to TikTok videos"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TikTok Download Buttons एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक 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\/*"
    ]
}