Comment Exporter for Youtube
Best way to Export Youtube Comments to Text, CSV or JSON
Comment Exporter for Youtubeคืออะไร?
Comment Exporter for Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://limbuscode.com และคุณลักษณะหลักของมันคือ "Best way to Export Youtube Comments to Text, CSV or JSON"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Comment Exporter for Youtube
ดาวน์โหลดไฟล์ส่วนขยาย Comment Exporter for Youtube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This Chrome Extension exports/converts a comment list of any youtube video into a Text, CSV (Spreadsheet), or JSON File. How it works: - First, install this extension. - Go to a youtube video (or shorts: premium only). - Next, click on the red icon next to your URL bar. Don't see the icon? Click on the puzzle piece, and then click on the pin to move it to your URL bar. - Click on "Load" button a the bottom to load the comments from the video. - If "Load" button is grayed, try to refresh the youtube's video tab and try again. - Wait for the "Download" button to be enabled. - Choose which format (and columns: premium only). - Click on "Download" then finally save the generated file. Not working? Please use the support button here in this page. Changelog: v.0.0.3.2. - fixed showing "no youtube video" error even if there is a youtube tab active. v.0.0.3.1: - not showing correct payment screen fixed. v.0.0.3: - YouTube Shorts supported; - Export Replies supported. v.0.0.2: - Full (premium) version bug fix. v.0.0.1: - First Version.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Comment Exporter for Youtube |
ID | flbjnmpmnemonehebikfcaofhikbgkim |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/comment-exporter-for-yout/flbjnmpmnemonehebikfcaofhikbgkim |
คำอธิบาย | Best way to Export Youtube Comments to Text, CSV or JSON |
ขนาดไฟล์ | 684 KB |
จำนวนการติดตั้ง | 676 |
เวอร์ชันปัจจุบัน | 0.0.3.2 |
อัปเดตครั้งล่าสุด | 2024-02-16 |
วันที่เผยแพร่ | 2022-12-06 |
คะแนน | 2.25/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://limbuscode.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
URL หน้าช่วยเหลือ | https://docs.google.com/forms/d/e/1FAIpQLSd_7IU5Rie2lqsxNA7TunGaSlgbmZOcORmtzrtR5fsiju07JQ/viewform?usp=pp_url&entry.937029896=Comment+Exporter+for+YouTube |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Comment Exporter for Youtube", "short_name": "comment-exporter-for-yt", "version": "0.0.3.2", "author": "LimbusCode", "description": "Best way to Export Youtube Comments to Text, CSV or JSON", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/extensionpay.com\/*" ], "js": [ "ExtPay.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_idle", "js": [ "ExtPay.js", "utils.js", "constants.js", "cscripts.js" ] } ], "action": { "default_popup": "popup.html", "default_title": "Comment Exporter for Youtube", "default_icon": { "16": "assets\/img\/16.png", "24": "assets\/img\/24.png", "32": "assets\/img\/32.png", "48": "assets\/img\/48.png", "64": "assets\/img\/64.png", "128": "assets\/img\/128.png" } }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "icons": { "16": "assets\/img\/16.png", "24": "assets\/img\/24.png", "32": "assets\/img\/32.png", "48": "assets\/img\/48.png", "64": "assets\/img\/64.png", "128": "assets\/img\/128.png" } } |