YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
YouTube Comment Exporter là gì?
YouTube Comment Exporter là một tiện ích mở rộng Chrome được phát triển bởi Rob Vella, và tính năng chính của nó là "Extracts YouTube comments for exporting to XLS, CSV, or JSON".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Comment Exporter
Tải xuống các tệp mở rộng YouTube Comment Exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Comment Exporter |
ID | dgjafcfohanpcjdlejlklfcaiodolcdl |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl |
Mô tả | Extracts YouTube comments for exporting to XLS, CSV, or JSON |
Kích Thước Tệp | 1.02 MB |
Số Lần Cài Đặt | 1,064 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2016-05-23 |
Ngày Phát Hành | 2016-05-23 |
Đánh Giá | 1.00/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Rob Vella |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/deftx/youtube-comment-exporter |
URL Trang Trợ Giúp | https://github.com/deftx/youtube-comment-exporter |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "content_scripts": [ { "all_frames": true, "js": [ "lib\/FileSaver.js", "lib\/xlsx.core.min.js", "lib\/jquery.min.js", "content_script.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "https:\/\/www.youtube.com\/*", "storage" ], "description": "Extracts YouTube comments for exporting to XLS, CSV, or JSON", "homepage_url": "http:\/\/github.com\/deftx\/youtube-comment-exporter", "icons": { "48": "img\/yte48.png", "128": "img\/yte128.png" }, "page_action": { "default_title": "Export comments", "default_popup": "popup.html" }, "manifest_version": 2, "name": "YouTube Comment Exporter", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.1" } |