YouTube™ Rating Loader

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

YouTube™ Rating Loaderคืออะไร?

YouTube™ Rating Loader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Benoit Hiller และคุณลักษณะหลักของมันคือ "Show the like/dislike ratio on video previews on YouTube."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube™ Rating Loader

ดาวน์โหลดไฟล์ส่วนขยาย YouTube™ Rating Loader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}