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 |
| 公式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 |
| Eメール | [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"
} | |