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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } |