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
公式URL 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
Eメール [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\/*"
            ]
        }
    ]
}