Tiktok-Scraper

This extension scrapes a Tiktok web page and either downloads a file or sends a POST.

Tiktok-Scraper क्या है?

Tiktok-Scraper silverbirder द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension scrapes a Tiktok web page and either downloads a file or sends a POST."।

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

screenshot
screenshot

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

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

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

                        This Chrome extension allows you to scrape information from TikTok web pages and download or POST it.

Tip:
* The scraping domain is www.tiktok.com.
* You can set the POST destination as you like.

Note:
Make sure you run it with chrome incognito!
This is because it will not work under the influence of other chrome exteions.                    

एक्सटेंशन की मूल जानकारी

नाम Tiktok-Scraper Tiktok-Scraper
ID ghnpllcbadkobhhidgbbffglnhjhfkje
आधिकारिक URL https://chrome.google.com/webstore/detail/tiktok-scraper/ghnpllcbadkobhhidgbbffglnhjhfkje
विवरण This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
फ़ाइल का आकार 14.87 KB
स्थापना संख्या 637
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2023-01-01
प्रकाशन तिथि 2022-01-25
रेटिंग 1.00/5 कुल 3 रेटिंग्स
डेवलपर silverbirder
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tiktok-Scraper",
    "description": "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.",
    "version": "0.0.1",
    "manifest_version": 3,
    "icons": {
        "16": ".\/icons\/favicon-16x16.png",
        "48": ".\/icons\/favicon-16x16.png",
        "128": ".\/icons\/favicon-16x16.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tiktok.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "web_accessible_resources.js"
            ],
            "matches": [
                "https:\/\/*.tiktok.com\/*"
            ]
        }
    ],
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/favicon-16x16.png",
            "48": ".\/icons\/favicon-16x16.png",
            "128": ".\/icons\/favicon-16x16.png"
        }
    },
    "devtools_page": "devtools.html"
}