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是由http://nicext.com开发的Chrome扩展程序,该扩展的主要功能是“It's a simple tool that helps to export list of comments from Tiktok videos”。
扩展截图
下载Tiktok Comment Saver | Save comments in CSV扩展crx文件
下载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\/*" ] } |