YouTube Sidebar Ratings

See ratings on YouTube's sidebar

什麼是YouTube Sidebar Ratings?

YouTube Sidebar Ratings是由https://umer936.com開發的Chrome擴展程式,該擴展的主要功能是“See ratings on YouTube's sidebar”。

擴展截圖

screenshot
screenshot

下載YouTube Sidebar Ratings擴展crx文件

下載YouTube Sidebar Ratings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        YouTube Ratings for Sidebar 

Why is this useful? 
You can see the ratings for related videos and better decide if you want to watch one. 

Why doesn't YouTube do this by default? 
I don't actually know, but my assumption is that having it would lessen the number of viewers since it would be extremely easy to spot "clickbait" videos.  

How'd you decide to make this extension? 
So I was browsing old GitHub projects and I found one that added the ratings to the sidebar of YouTube. 

I forked it and got to work to bring it up to date from it's "last updated in 2012" version. 

After rewriting what Git tells me is 98% of the code, I finished it. 

-----------------------------------

Possible bug: Sometimes an adblocker will make the like/dislike bars not show up. Simply refresh the page. (It's only happened to me once in 3 days). 

-----------------------------------

Possible TODO if demand, 
- Show the actual likes/dislikes numbers underneath 
- Show like/dislike images 
- Customizations of locations options                    

擴展基本資訊

名稱 YouTube Sidebar Ratings YouTube Sidebar Ratings
ID jdlibcekhoebiiclnfomaikejhjhofki
官方網址 https://chromewebstore.google.com/detail/youtube-sidebar-ratings/jdlibcekhoebiiclnfomaikejhjhofki
簡介 See ratings on YouTube's sidebar
檔案大小 37.79 KB
安裝次數 24
目前版本 2.6
更新時間 2016-10-08
上架時間 2016-10-08
評分 1.75/5 共 4 次評分
開發者 https://umer936.com
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Sidebar Ratings",
    "version": "2.6",
    "manifest_version": 2,
    "description": "See ratings on YouTube's sidebar",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch?v=*"
            ],
            "js": [
                "jquery.js",
                "ratings.js"
            ],
            "run_at": "document_end"
        }
    ]
}