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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
            ]
        }
    ]
}