Return YouTube Dislike Button

Returns ability to see dislikes on YouTube

什麼是Return YouTube Dislike Button?

Return YouTube Dislike Button是由AdDev開發的Chrome擴展程式,該擴展的主要功能是“Returns ability to see dislikes on YouTube”。

擴展截圖

screenshot
screenshot

下載Return YouTube Dislike Button擴展crx文件

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

擴展使用說明

                        Returns ability to see dislike statistics and rating bar.

Shows full (not-shortened) likes and dislikes on hover over rating bar.


YouTube is hiding Youtube Dislikes from everyone except the creator itself. But in the mean time, we can use Youtube Data v3 API to fetch dislikes of a video and show it to the consumer (you). Youtube will break this by 30th December, but Yt Dislikes viewer comes with an archive API that automatically fetches dislikes of every video you watch (after installing the extension) and saves it into an open-sourced database (only the video ID and dislike count, none of your data). In future, we have many big plans for this as well.                    

擴展基本資訊

名稱 Return YouTube Dislike Button Return YouTube Dislike Button
ID hkipgenlhedgfkjlajomnhaiafnhnjjf
官方網址 https://chrome.google.com/webstore/detail/return-youtube-dislike-bu/hkipgenlhedgfkjlajomnhaiafnhnjjf
簡介 Returns ability to see dislikes on YouTube
檔案大小 17.98 KB
安裝次數 6,970
目前版本 2.1
更新時間 2023-02-22
上架時間 2021-12-02
評分 3.27/5 共 22 次評分
開發者 AdDev
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://pastebin.com/raw/AdhZ19M3
隱私政策頁面URL https://www.amann.com/meta/privacy-policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Return YouTube Dislike Button",
    "description": "Returns ability to see dislikes on YouTube",
    "version": "2.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "return-youtube-dislike.background.js"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "oauth2": {
        "client_id": "292556337651-kbmq2pduaejrol457a5s1089ut6ug0u9.apps.googleusercontent.com",
        "scopes": [
            "openid"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "return-youtube-dislike.content-script.js"
            ],
            "run_at": "document_start",
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "return-youtube-dislike.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}