YouTube Star Rating

The ultimate rating system for YouTube.

什么是YouTube Star Rating?

YouTube Star Rating是由Žan Ožbot开发的Chrome扩展程序,该扩展的主要功能是“The ultimate rating system for YouTube.”。

扩展截图

screenshot
screenshot
screenshot

下载YouTube Star Rating扩展crx文件

下载YouTube Star Rating扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension was created to solve the problem with YouTube like/dislike rating system (especially since the dislike number was removed from YouTube). Our solution is a convenient star rating system in a form of a browser extension that allows users to rate YouTube videos from 1 to 5 stars and see their ratings.

The difference between the rating systems is subtle, yet very important.
• Star rating - the user will associate it with quality. If the user sees a video rated with 5 stars, they will think that it is of very good quality.
• Like/dislike rating - the user will associate it with preference. If the user sees a video that received some "likes", they will think that some people prefer it, without necessarily associating it with quality.

More information about the extension is available on our website https://youtubestarrating.com

But this is just the beginning.

As we grow we'll continue to upgrade the extension and bring you more features and a better user experience. We have some awesome ideas for the future!                    

扩展基本信息

名称 YouTube Star Rating YouTube Star Rating
ID ngidhkhdahknlfdodgallocafkidjmff
官方URL https://chromewebstore.google.com/detail/youtube-star-rating/ngidhkhdahknlfdodgallocafkidjmff
简介 The ultimate rating system for YouTube.
文件大小 21.42 KB
安装次数 324
当前版本 1.2.0
更新时间 2024-01-05
上架时间 2022-01-05
评分 4.67/5 共9次评分
开发者 Žan Ožbot
电子邮箱 [email protected]
付费类型 free
扩展官网 https://youtubestarrating.ozbot.si/
帮助页面URL https://www.buymeacoffee.com/zanozbot
隐私政策页面URL https://youtubestarrating.ozbot.si/faq
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.2.0",
    "name": "YouTube Star Rating",
    "description": "The ultimate rating system for YouTube.",
    "author": "\u017dan O\u017ebot",
    "homepage_url": "https:\/\/youtubestarrating.ozbot.si\/",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/icons\/16x16.png",
        "32": "\/icons\/32x32.png",
        "48": "\/icons\/48x48.png",
        "128": "\/icons\/128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/16x16.png",
            "32": "\/icons\/32x32.png",
            "48": "\/icons\/48x48.png",
            "128": "\/icons\/128x128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.music.youtube.com\/*"
            ],
            "css": [
                "content-styles.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "template.html"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}