Tiktok-Scraper
This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
Qu'est-ce que Tiktok-Scraper ?
Tiktok-Scraper est une extension Chrome développée par silverbirder, et sa fonction principale est "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tiktok-Scraper
Téléchargez les fichiers d'extension Tiktok-Scraper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ghnpllcbadkobhhidgbbffglnhjhfkje |
URL Officiel | 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. |
Taille du Fichier | 14.87 KB |
Nombre d'Installations | 637 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2023-01-01 |
Date de Publication | 2022-01-25 |
Évaluation | 1.00/5 Total 3 Évaluations |
Développeur | silverbirder |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader |
Langues Prises en Charge | 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" } |