YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
什麼是YouTube Comment Exporter?
YouTube Comment Exporter是由Rob Vella開發的Chrome擴展程式,該擴展的主要功能是“Extracts YouTube comments for exporting to XLS, CSV, or JSON”。
擴展截圖
下載YouTube Comment Exporter擴展crx文件
下載YouTube Comment Exporter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format.
擴展基本資訊
名稱 | YouTube Comment Exporter |
ID | dgjafcfohanpcjdlejlklfcaiodolcdl |
官方網址 | https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl |
簡介 | Extracts YouTube comments for exporting to XLS, CSV, or JSON |
檔案大小 | 1.02 MB |
安裝次數 | 1,064 |
目前版本 | 1.0.1 |
更新時間 | 2016-05-23 |
上架時間 | 2016-05-23 |
評分 | 1.00/5 共 7 次評分 |
開發者 | Rob Vella |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/deftx/youtube-comment-exporter |
說明頁面URL | https://github.com/deftx/youtube-comment-exporter |
支援的語言 | 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" } |