Youtube Video Scorer

A chrome extension that scores YouTube videos, based on k-means clustering and likes-to-view ratio.

Youtube Video Scorer là gì?

Youtube Video Scorer là một tiện ích mở rộng Chrome được phát triển bởi joao.silva4991, và tính năng chính của nó là "A chrome extension that scores YouTube videos, based on k-means clustering and likes-to-view ratio.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Video Scorer

Tải xuống các tệp mở rộng Youtube Video Scorer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        A chrome extension that scores YouTube videos. It is a useful metric since dislikes and like-to-dislike ratio were removed from YouTube.**

- How to use

1. Install the extension.
2. Get an YouTube API key from [Google](https://console.developers.google.com/apis/credentials). A free key allows you to score 10 000 videos per day.
3. Insert the API key in the extension popup.
4. Navigate to a YouTube video. The extension will score the video and display the score.
5. Click on the button in the extension popup to see the scores of multiple videos on the thumbnails. 

- Technical Details

It works the following way:

1. Gets video statistics using the YouTube API.
2. Clusters video into groups based on video characteristics. 
    - Clustering is done using [K-means](https://en.wikipedia.org/wiki/K-means_clustering).
    - Parameters used are combinations and transformations of views, video age, video length, number of comments, number of channel subscribers.
3. Scores the video relative to the other videos in the cluster.
    - The score is the percentile of likes-to-view ratio of the video relative to the other videos in the cluster.
    - A transformation of the percentile to make the score more intuitive.

How it uses new video data:

- Centroids for clustering and statistics are pre-deployed.
- New video data is used to update the centroids and statistics locally on the browser.
- No data is collected or sent outside the browser.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube Video Scorer Youtube Video Scorer
ID gnhpjpbjmobcockboghiffjmmnddmbbg
URL Chính Thức https://chromewebstore.google.com/detail/youtube-video-scorer/gnhpjpbjmobcockboghiffjmmnddmbbg
Mô tả A chrome extension that scores YouTube videos, based on k-means clustering and likes-to-view ratio.
Kích Thước Tệp 51.59 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2022-07-21
Ngày Phát Hành 2022-07-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển joao.silva4991
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jps-yes/youtube_video_scorer
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Video Scorer",
    "description": "A chrome extension that scores YouTube videos, based on k-means clustering and likes-to-view ratio.",
    "version": "0.1",
    "manifest_version": 3,
    "icons": {
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png"
    },
    "action": {
        "default_popup": "popup\/index.html"
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.music.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    }
}