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.”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | ghnpllcbadkobhhidgbbffglnhjhfkje |
官方網址 | 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" } |