Tiktok-Scraper
This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
Co je Tiktok-Scraper?
Tiktok-Scraper je rozšíření Chrome vyvinuté silverbirder, a jeho hlavní funkcí je „This extension scrapes a Tiktok web page and either downloads a file or sends a POST.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Tiktok-Scraper
Stáhněte si soubory rozšíření Tiktok-Scraper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | ghnpllcbadkobhhidgbbffglnhjhfkje |
Oficiální URL | https://chrome.google.com/webstore/detail/tiktok-scraper/ghnpllcbadkobhhidgbbffglnhjhfkje |
Popis | This extension scrapes a Tiktok web page and either downloads a file or sends a POST. |
Velikost souboru | 14.87 KB |
Počet instalací | 637 |
Aktuální Verze | 0.0.1 |
Poslední Aktualizace | 2023-01-01 |
Datum Vydání | 2022-01-25 |
Hodnocení | 1.00/5 Celkem 3 Hodnocení |
Vývojář | silverbirder |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader |
Podporované Jazyky | 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" } |