Tiktok-Scraper
This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
Tiktok-Scraperคืออะไร?
Tiktok-Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย silverbirder และคุณลักษณะหลักของมันคือ "This extension scrapes a Tiktok web page and either downloads a file or sends a POST."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tiktok-Scraper
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" } |