View-Like Ratio for YouTube

Add display to the YouTube watch page to show a view-to-like ratio or percentage.

View-Like Ratio for YouTube란 무엇입니까?

View-Like Ratio for YouTube은(는) flootah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add display to the YouTube watch page to show a view-to-like ratio or percentage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

View-Like Ratio for YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        With YouTube dislikes on the way out, there needs to be an alternative way to judge a video's quality. This extension brings a solution by showing how often viewers decide to like a video. This metric can be useful when comparing videos of similar content or by the same creator.                    

확장 프로그램 기본 정보

이름 View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
공식 URL https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
설명 Add display to the YouTube watch page to show a view-to-like ratio or percentage.
파일 크기 16.66 KB
설치 횟수 146
현재 버전 0.4
최근 업데이트 2022-12-07
출시 날짜 2021-12-01
평점 3.29/5 총 7 개의 평점
개발자 flootah
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://flootah.dev/about/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "View-Like Ratio for YouTube",
    "description": "Add display to the YouTube watch page to show a view-to-like ratio or percentage.",
    "version": "0.4",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "viewlike.css"
            ],
            "js": [
                "viewlike.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "viewlike128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "viewlike.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}