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 thibault.tnt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Sentiment Analysis एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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\/*" ] } ] } |