YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
Hvad er YouTube Comment Exporter?
YouTube Comment Exporter er en Chrome-udvidelse udviklet af Rob Vella, og dens hovedfunktion er "Extracts YouTube comments for exporting to XLS, CSV, or JSON".
Udvidelsesskærmbilleder
Download YouTube Comment Exporter-udvidelses-CRX-fil
Download YouTube Comment Exporter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format.
Grundlæggende oplysninger om udvidelsen
Navn | YouTube Comment Exporter |
ID | dgjafcfohanpcjdlejlklfcaiodolcdl |
Officiel URL | https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl |
Beskrivelse | Extracts YouTube comments for exporting to XLS, CSV, or JSON |
Filstørrelse | 1.02 MB |
Antal Installationer | 1,064 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2016-05-23 |
Udgivelsesdato | 2016-05-23 |
Bedømmelse | 1.00/5 Samlet 7 Bedømmelser |
Udvikler | Rob Vella |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/deftx/youtube-comment-exporter |
Hjælpeside-URL | https://github.com/deftx/youtube-comment-exporter |
Understøttede Sprog | 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" } |