YouTube Comment Exporter

Extracts YouTube comments for exporting to XLS, CSV, or JSON

Qu'est-ce que YouTube Comment Exporter ?

YouTube Comment Exporter est une extension Chrome développée par Rob Vella, et sa fonction principale est "Extracts YouTube comments for exporting to XLS, CSV, or JSON".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Comment Exporter

Téléchargez les fichiers d'extension YouTube Comment Exporter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This is a Chrome Extension that allows you to extract and export comments from a YouTube video into XLS, CSV, or JSON format.                    

Informations de Base sur l'Extension

Nom YouTube Comment Exporter YouTube Comment Exporter
ID dgjafcfohanpcjdlejlklfcaiodolcdl
URL Officiel https://chromewebstore.google.com/detail/youtube-comment-exporter/dgjafcfohanpcjdlejlklfcaiodolcdl
Description Extracts YouTube comments for exporting to XLS, CSV, or JSON
Taille du Fichier 1.02 MB
Nombre d'Installations 1,064
Version Actuelle 1.0.1
Dernière Mise à Jour 2016-05-23
Date de Publication 2016-05-23
Évaluation 1.00/5 Total 7 Évaluations
Développeur Rob Vella
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/deftx/youtube-comment-exporter
URL de la Page d'Aide https://github.com/deftx/youtube-comment-exporter
Langues Prises en Charge 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"
}