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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thibault.tnt และคุณลักษณะหลักของมันคือ "Introducing the Youtube Sentiment Analysis Chrome extension! Developed as part of a KU Leuven course, this extension employs the…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Sentiment Analysis

ดาวน์โหลดไฟล์ส่วนขยาย 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
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\/*"
            ]
        }
    ]
}