YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
Co to jest YouTube Comment Exporter?
YouTube Comment Exporter to rozszerzenie Chrome opracowane przez Rob Vella, a jego główną funkcją jest „Extracts YouTube comments for exporting to XLS, CSV, or JSON”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Comment Exporter
Pobierz pliki rozszerzeń YouTube Comment Exporter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | dgjafcfohanpcjdlejlklfcaiodolcdl |
| Oficjalny URL | https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl |
| Opis | Extracts YouTube comments for exporting to XLS, CSV, or JSON |
| Rozmiar pliku | 1.02 MB |
| Liczba instalacji | 1,064 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2016-05-23 |
| Data Publikacji | 2016-05-23 |
| Ocena | 1.00/5 Łącznie 7 Oceny |
| Deweloper | Rob Vella |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/deftx/youtube-comment-exporter |
| Adres URL Strony Pomocy | https://github.com/deftx/youtube-comment-exporter |
| Obsługiwane Języki | 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"
} | |