YouTube Comment Exporter
Extracts YouTube comments for exporting to XLS, CSV, or JSON
Vad är YouTube Comment Exporter?
YouTube Comment Exporter är en Chrome-tillägg utvecklad av Rob Vella, och dess huvudfunktion är "Extracts YouTube comments for exporting to XLS, CSV, or JSON".
Tilläggsskärmbilder
Ladda ner YouTube Comment Exporter-förlängningens CRX-fil
Ladda ner YouTube Comment Exporter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format. Grundläggande Information om Tillägg
| Namn | |
| ID | dgjafcfohanpcjdlejlklfcaiodolcdl |
| Officiell webbadress | https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl |
| Beskrivning | Extracts YouTube comments for exporting to XLS, CSV, or JSON |
| Filstorlek | 1.02 MB |
| Antal Installationer | 1,064 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2016-05-23 |
| Publiceringsdatum | 2016-05-23 |
| Betyg | 1.00/5 Totalt 7 Betyg |
| Utvecklare | Rob Vella |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/deftx/youtube-comment-exporter |
| Hjälpsida URL | https://github.com/deftx/youtube-comment-exporter |
| Stödda Språk | 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"
} | |