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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}