Tiktok-Scraper
This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
Cos'è Tiktok-Scraper?
Tiktok-Scraper è un'estensione di Chrome sviluppata da silverbirder, e la sua funzione principale è "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tiktok-Scraper
Scarica i file di estensione Tiktok-Scraper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | ghnpllcbadkobhhidgbbffglnhjhfkje |
URL Ufficiale | https://chrome.google.com/webstore/detail/tiktok-scraper/ghnpllcbadkobhhidgbbffglnhjhfkje |
Descrizione | This extension scrapes a Tiktok web page and either downloads a file or sends a POST. |
Dimensione del File | 14.87 KB |
Conteggio Installazioni | 637 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2023-01-01 |
Data di Pubblicazione | 2022-01-25 |
Valutazione | 1.00/5 Totale 3 Valutazioni |
Sviluppatore | silverbirder |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader |
Lingue Supportate | 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" } |