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".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Comment Exporter YouTube Comment Exporter
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"
}