Tiktok-Scraper
This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
What is Tiktok-Scraper?
Tiktok-Scraper is a Chrome extension developed by silverbirder, and its main feature is "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.".
Extension Screenshots
Download Tiktok-Scraper Extension CRX File
Download Tiktok-Scraper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ghnpllcbadkobhhidgbbffglnhjhfkje |
Official URL | https://chrome.google.com/webstore/detail/tiktok-scraper/ghnpllcbadkobhhidgbbffglnhjhfkje |
Description | This extension scrapes a Tiktok web page and either downloads a file or sends a POST. |
File Size | 14.87 KB |
Installation Count | 637 |
Current Version | 0.0.1 |
Last Updated | 2023-01-01 |
Publish Date | 2022-01-25 |
Rating | 1.00/5 Total 3 Ratings |
Developer | silverbirder |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader |
Supported Languages | 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" } |