Hide Youtube Likes/Dislikes

Hides ratings information on Youtube videos.

什么是Hide Youtube Likes/Dislikes?

Hide Youtube Likes/Dislikes是由rmitaldev开发的Chrome扩展程序,该扩展的主要功能是“Hides ratings information on Youtube videos.”。

扩展截图

screenshot
screenshot
screenshot

下载Hide Youtube Likes/Dislikes扩展crx文件

下载Hide Youtube Likes/Dislikes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        UPDATE 1.0.2: Now handles Youtube's new sentiment bar, where dislikes are already hidden automatically.

This extension gives users the option to hide the number of "likes" on a video and/or the entire sentiment bar on Youtube. Feel free to continue rating videos without worrying what other people think of it, or turn off that feature completely if you want to watch and enjoy videos without any pressure!

NOTE: You will need to restart your browser for the changes to take effect! If you have any other trouble with this extension, please leave a comment in the support page and I will get to you as soon as I can. Thanks!                    

扩展基本信息

名称 Hide Youtube Likes/Dislikes Hide Youtube Likes/Dislikes
ID bndphnggikgjkhappgdnhijgnlafnfph
官方URL https://chromewebstore.google.com/detail/hide-youtube-likesdislike/bndphnggikgjkhappgdnhijgnlafnfph
简介 Hides ratings information on Youtube videos.
文件大小 73.07 KB
安装次数 641
当前版本 1.0.2
更新时间 2023-05-09
上架时间 2020-02-24
评分 4.38/5 共32次评分
开发者 rmitaldev
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Youtube Likes\/Dislikes",
    "version": "1.0.2",
    "description": "Hides ratings information on Youtube videos.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "arrive.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/ico_16.png",
            "32": "images\/ico_32.png",
            "48": "images\/ico_48.png",
            "128": "images\/ico_128.png"
        }
    },
    "icons": {
        "16": "images\/ico_16.png",
        "32": "images\/ico_32.png",
        "48": "images\/ico_48.png",
        "128": "images\/ico_128.png"
    }
}