YouTube™ Rating Loader

Show the like/dislike ratio on video previews on YouTube.

YouTube™ Rating Loader란 무엇입니까?

YouTube™ Rating Loader은(는) Benoit Hiller에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show the like/dislike ratio on video previews on YouTube."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube™ Rating Loader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Display rating bars on all of the video previews on YouTube.

This is an open alternative to existing YouTube rating extensions and is guaranteed to not ever collect any user data for any purpose. The source is available on extension website.

Features:

• Displays the like/dislike ratio at the top of video previews.
• Shows the like percentage if you hover over the bar.

Changes:
September 19, 2017, version 3.0.0
• rebuilt extension to handle youtube redesign
April 9, 2017, version 2.3.1
• fixed issue preventing nearly all likes from rendering
April 14, 2016, version 2.3.0
• added support for history page
March 28, 2016, version 2.2.0
• added support for subscriptions and trending pages
March 27, 2016, version 2.1.2
• fixed display of certain homepage feed items
November 26, 2015, version 2.0.1
• Updated the extension to properly support the new youtube player and layout.
May 2, 2015, version 1.1.2
• Made the background page unload when inactive to reduce memory usage.                    

확장 프로그램 기본 정보

이름 YouTube™ Rating Loader YouTube™ Rating Loader
ID klbndepaecfpfbmoecedmofogihhlpbm
공식 URL https://chrome.google.com/webstore/detail/youtube-rating-loader/klbndepaecfpfbmoecedmofogihhlpbm
설명 Show the like/dislike ratio on video previews on YouTube.
파일 크기 53.72 KB
설치 횟수 664
현재 버전 3.0.0
최근 업데이트 2017-09-19
출시 날짜 2017-09-19
평점 3.29/5 총 35 개의 평점
개발자 Benoit Hiller
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/BenoitHiller/youtube_score
개인정보 보호 정책 페이지 URL https://www.benoithiller.com/webstore_privacy_policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube\u2122 Rating Loader",
    "description": "Show the like\/dislike ratio on video previews on YouTube.",
    "version": "3.0.0",
    "icons": {
        "16": "share\/icon16.png",
        "48": "share\/icon48.png",
        "128": "share\/icon128.png"
    },
    "background": {
        "scripts": [
            "vendor\/jquery\/dist\/jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "vendor\/jquery\/dist\/jquery.min.js",
                "observer.js"
            ],
            "css": [
                "youtube.css"
            ]
        }
    ]
}