Youtube Sentiment Analysis
Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the…
Qu'est-ce que Youtube Sentiment Analysis ?
Youtube Sentiment Analysis est une extension Chrome développée par thibault.tnt, et sa fonction principale est "Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Sentiment Analysis
Téléchargez les fichiers d'extension Youtube Sentiment Analysis 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
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!
Informations de Base sur l'Extension
Nom | Youtube Sentiment Analysis |
ID | fjgpfjohfddffjhkekipahjnfdioijad |
URL Officiel | https://chromewebstore.google.com/detail/youtube-sentiment-analysi/fjgpfjohfddffjhkekipahjnfdioijad |
Description | Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the… |
Taille du Fichier | 2.47 MB |
Nombre d'Installations | 33 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2024-01-05 |
Date de Publication | 2023-12-20 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | thibault.tnt |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://sentiment.minetronic.com/privacy-policy |
Langues Prises en Charge | 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\/*" ] } ] } |