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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}