Tiktok Comment Saver | Save comments in CSV
It's a simple tool that helps to export list of comments from Tiktok videos
Τι είναι το Tiktok Comment Saver | Save comments in CSV;
Το Tiktok Comment Saver | Save comments in CSV είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://nicext.com, και η κύρια λειτουργία του είναι "It's a simple tool that helps to export list of comments from Tiktok videos".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tiktok Comment Saver | Save comments in CSV
Λήψη αρχείων επέκτασης Tiktok Comment Saver | Save comments in CSV σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
▬▬▬▬▬▬▬ Features▬▬▬▬▬▬▬ Save comments of Tiktok videos in CSV format. ▬▬▬▬▬▬▬ Get started ▬▬▬▬▬▬▬ 1. Sign in Tiktok and open the extension. 2. Paste the link of the video to the text field then click 'GO'. 3. Click to save csv when data loading completes. ▬▬▬▬▬▬ Safe ▬▬▬▬▬▬ - This extension do not require your Tiktok password, so your ccount & data are secure. ▬▬▬▬▬▬ Is it free? ▬▬▬▬▬▬ - You can export 50 comments for FREE, purchase PRO to remove the limit. ▬▬▬▬▬▬ Support ▬▬▬▬▬▬ [email protected]
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | fmnejpflcpjfccbgmbomipdkbgnbjgko |
Επίσημο URL | https://chrome.google.com/webstore/detail/tiktok-comment-saver-save/fmnejpflcpjfccbgmbomipdkbgnbjgko |
Περιγραφή | It's a simple tool that helps to export list of comments from Tiktok videos |
Μέγεθος Αρχείου | 982 KB |
Αριθμός Εγκαταστάσεων | 48 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2021-12-13 |
Ημερομηνία Δημοσίευσης | 2021-08-02 |
Προγραμματιστής | http://nicext.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://nicext.com/tiktok-comment-saver/ |
URL της Σελίδας Πολιτικής Απορρήτου | http://nicext.com/comment-exporter-for-ig/privacy-policy.html |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiktok Comment Saver | Save comments in CSV", "description": "It's a simple tool that helps to export list of comments from Tiktok videos", "version": "1.0.2", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "Tiktok Comment Saver", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.tiktok.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background\/background.js" ] }, "web_accessible_resources": [ "inject.js" ], "permissions": [ "storage", "downloads", "https:\/\/nicext.com\/", "https:\/\/*.tiktok.com\/api\/*" ] } |