YouTube Comments Sentiment
Visualize a YouTube video's sentiment given the comments.
Qu'est-ce que YouTube Comments Sentiment ?
YouTube Comments Sentiment est une extension Chrome développée par ryan.sawchuk.projects, et sa fonction principale est "Visualize a YouTube video's sentiment given the comments.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Comments Sentiment
Téléchargez les fichiers d'extension YouTube Comments Sentiment 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
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.
Informations de Base sur l'Extension
Nom | YouTube Comments Sentiment |
ID | dkfoidehmdpnpcplbcmenkfclahalihg |
URL Officiel | https://chromewebstore.google.com/detail/youtube-comments-sentimen/dkfoidehmdpnpcplbcmenkfclahalihg |
Description | Visualize a YouTube video's sentiment given the comments. |
Taille du Fichier | 190 KB |
Nombre d'Installations | 121 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2023-01-06 |
Date de Publication | 2023-01-06 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | ryan.sawchuk.projects |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/RyanSawchuk/YT-comments-sentiment |
Langues Prises en Charge | 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" ] } |