YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
Что такое YouTube Comment Exporter?
YouTube Comment Exporter - это расширение Chrome, разработанное Rob Vella, и его основная функция - "Extracts YouTube comments for exporting to XLS, CSV, or JSON".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Comment Exporter
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| 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"
} | |