Tiktok-Scraper
This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
Tiktok-Scraper là gì?
Tiktok-Scraper là một tiện ích mở rộng Chrome được phát triển bởi silverbirder, và tính năng chính của nó là "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Tiktok-Scraper
Tải xuống các tệp mở rộng Tiktok-Scraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ghnpllcbadkobhhidgbbffglnhjhfkje |
URL Chính Thức | https://chrome.google.com/webstore/detail/tiktok-scraper/ghnpllcbadkobhhidgbbffglnhjhfkje |
Mô tả | This extension scrapes a Tiktok web page and either downloads a file or sends a POST. |
Kích Thước Tệp | 14.87 KB |
Số Lần Cài Đặt | 637 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2023-01-01 |
Ngày Phát Hành | 2022-01-25 |
Đánh Giá | 1.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | silverbirder |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader |
Ngôn Ngữ Được Hỗ Trợ | 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" } |