Tiktok-Scraper
This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
O que é Tiktok-Scraper?
Tiktok-Scraper é uma extensão do Chrome desenvolvida por silverbirder, e sua principal característica é "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tiktok-Scraper
Baixe arquivos de extensão Tiktok-Scraper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | ghnpllcbadkobhhidgbbffglnhjhfkje |
URL Oficial | https://chrome.google.com/webstore/detail/tiktok-scraper/ghnpllcbadkobhhidgbbffglnhjhfkje |
Descrição | This extension scrapes a Tiktok web page and either downloads a file or sends a POST. |
Tamanho do Arquivo | 14.87 KB |
Contagem de Instalações | 637 |
Versão Atual | 0.0.1 |
Última Atualização | 2023-01-01 |
Data de Publicação | 2022-01-25 |
Classificação | 1.00/5 Total de 3 Avaliações |
Desenvolvedor | silverbirder |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader |
Idiomas Suportados | 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" } |