YouTube Comments Sentiment

Visualize a YouTube video's sentiment given the comments.

Was ist YouTube Comments Sentiment?

YouTube Comments Sentiment ist eine Chrome-Erweiterung, die von ryan.sawchuk.projects entwickelt wurde, und ihr Hauptmerkmal ist "Visualize a YouTube video's sentiment given the comments.".

Erweiterungsscreenshots

screenshot
screenshot

YouTube Comments Sentiment-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Comments Sentiment-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Visualize the aggregate sentiment of a YouTube video's comments on an adapted Likert scale.

This extension uses the specialized social media VADER Sentiment Analysis algorithms to evaluate the sentiment of the top 300 comments by relevance. 
The compound sentiment value for a comment is scaled by the amount of likes the comment has received. 

Scaling by likes allows for an accurate depiction of the sentiment with a low sample size of comments. The sentiment analysis results act as a loose proxy for the Like-to-Dislike ratio, but are not always indicative of the true Like-to-Dislike ratio.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Comments Sentiment YouTube Comments Sentiment
ID dkfoidehmdpnpcplbcmenkfclahalihg
Offizielle URL https://chromewebstore.google.com/detail/youtube-comments-sentimen/dkfoidehmdpnpcplbcmenkfclahalihg
Beschreibung Visualize a YouTube video's sentiment given the comments.
Dateigröße 190 KB
Installationsanzahl 121
Aktuelle Version 0.1.0
Letztes Update 2023-01-06
Veröffentlichungsdatum 2023-01-06
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler ryan.sawchuk.projects
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/RyanSawchuk/YT-comments-sentiment
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Comments Sentiment",
    "version": "0.1.0",
    "description": "Visualize a YouTube video's sentiment given the comments.",
    "author": "Ryan Sawchuk",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "YouTube Comment Sentiment",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}