Tiktok-Scraper

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

什么是Tiktok-Scraper?

Tiktok-Scraper是由silverbirder开发的Chrome扩展程序,该扩展的主要功能是“This extension scrapes a Tiktok web page and either downloads a file or sends a POST.”。

扩展截图

screenshot
screenshot

下载Tiktok-Scraper扩展crx文件

下载Tiktok-Scraper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
}