Tiktok-Scraper

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

Apa itu Tiktok-Scraper?

Tiktok-Scraper adalah ekstensi Chrome yang dikembangkan oleh silverbirder, dan fitur utamanya adalah "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Tiktok-Scraper

Unduh file ekstensi Tiktok-Scraper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Tiktok-Scraper Tiktok-Scraper
ID ghnpllcbadkobhhidgbbffglnhjhfkje
URL Resmi https://chrome.google.com/webstore/detail/tiktok-scraper/ghnpllcbadkobhhidgbbffglnhjhfkje
Deskripsi This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
Ukuran File 14.87 KB
Jumlah Instalasi 637
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2023-01-01
Tanggal Publikasi 2022-01-25
Penilaian 1.00/5 Total 3 Penilaian
Pengembang silverbirder
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader
Bahasa yang Didukung 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"
}