Youtube Sentiment Analysis

Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the…

Τι είναι το Youtube Sentiment Analysis;

Το Youtube Sentiment Analysis είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thibault.tnt, και η κύρια λειτουργία του είναι "Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the…".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Youtube Sentiment Analysis

Λήψη αρχείων επέκτασης Youtube Sentiment Analysis σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the powerful VADER sentiment model to analyze comments under YouTube videos, offering insightful sentiment visualizations.

Our extension embeds sentiment visualizations directly into the YouTube frontend. This aims to enhance your understanding of the sentiment present within the youtube comments.

In our ongoing research, we aim to uncover the most effective visualizations for enhancing your comprehension of the underlying VADER model. We invite you to participate in our user study and be a pivotal part of this groundbreaking research initiative. Simply watch three videos, share your insights through a questionnaire. Join us on this exciting journey of discovery!

Elevate your YouTube experience, contribute to cutting-edge research, and download our extension now!                    

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

Όνομα Youtube Sentiment Analysis Youtube Sentiment Analysis
ID fjgpfjohfddffjhkekipahjnfdioijad
Επίσημο URL https://chromewebstore.google.com/detail/youtube-sentiment-analysi/fjgpfjohfddffjhkekipahjnfdioijad
Περιγραφή Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the…
Μέγεθος Αρχείου 2.47 MB
Αριθμός Εγκαταστάσεων 33
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2024-01-05
Ημερομηνία Δημοσίευσης 2023-12-20
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής thibault.tnt
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://sentiment.minetronic.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Sentiment Analysis",
    "version": "1.1",
    "description": "",
    "icons": {
        "48": "media\/icon.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ],
            "js": [
                "content_scripts\/js\/inject_explanations.js"
            ],
            "css": [
                "content_scripts\/css\/global.css",
                "content_scripts\/css\/extension_container.css",
                "content_scripts\/css\/comment_container.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "service_workers\/service_worker.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "explanations\/*",
                "libraries\/*",
                "media\/*",
                "variants\/*",
                "user_flow\/*",
                "utils\/*",
                "config.json"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}