YouTube Comments Sentiment
Visualize a YouTube video's sentiment given the comments.
什麼是YouTube Comments Sentiment?
YouTube Comments Sentiment是由ryan.sawchuk.projects開發的Chrome擴展程式,該擴展的主要功能是“Visualize a YouTube video's sentiment given the comments.”。
擴展截圖
下載YouTube Comments Sentiment擴展crx文件
下載YouTube Comments Sentiment擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Visualize the aggregate sentiment of a YouTube video's comments on an adapted Likert scale. This extension uses the specialized social media VADER Sentiment Analysis algorithms to evaluate the sentiment of the top 300 comments by relevance. The compound sentiment value for a comment is scaled by the amount of likes the comment has received. Scaling by likes allows for an accurate depiction of the sentiment with a low sample size of comments. The sentiment analysis results act as a loose proxy for the Like-to-Dislike ratio, but are not always indicative of the true Like-to-Dislike ratio.
擴展基本資訊
名稱 | YouTube Comments Sentiment |
ID | dkfoidehmdpnpcplbcmenkfclahalihg |
官方網址 | https://chromewebstore.google.com/detail/youtube-comments-sentimen/dkfoidehmdpnpcplbcmenkfclahalihg |
簡介 | Visualize a YouTube video's sentiment given the comments. |
檔案大小 | 190 KB |
安裝次數 | 121 |
目前版本 | 0.1.0 |
更新時間 | 2023-01-06 |
上架時間 | 2023-01-06 |
評分 | 5.00/5 共 2 次評分 |
開發者 | ryan.sawchuk.projects |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/RyanSawchuk/YT-comments-sentiment |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Comments Sentiment", "version": "0.1.0", "description": "Visualize a YouTube video's sentiment given the comments.", "author": "Ryan Sawchuk", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "YouTube Comment Sentiment", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |