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開發的Chrome擴展程式,該擴展的主要功能是“Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the…”。

擴展截圖

screenshot
screenshot

下載Youtube Sentiment Analysis擴展crx文件

下載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
官方網址 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\/*"
            ]
        }
    ]
}