Return YouTube Dislike Count™

Show Youtube Dislike Count Again!

什么是Return YouTube Dislike Count™?

Return YouTube Dislike Count™是由w3technic开发的Chrome扩展程序,该扩展的主要功能是“Show Youtube Dislike Count Again!”。

扩展截图

screenshot

下载Return YouTube Dislike Count™扩展crx文件

下载Return YouTube Dislike Count™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Returns dislikes and ratio back to YouTube
This extension returns dislikes and a ratio back to YouTube for those who have been censored by Google in their experiment

- Added dislike count
- Added ratio
- Added detailed information [likes/dislikes]                    

扩展基本信息

名称 Return YouTube Dislike Count™ Return YouTube Dislike Count™
ID khilmfjhfhdigjjeajfofflkehemimkn
官方URL https://chrome.google.com/webstore/detail/return-youtube-dislike-co/khilmfjhfhdigjjeajfofflkehemimkn
简介 Show Youtube Dislike Count Again!
文件大小 20.63 KB
安装次数 3,794
当前版本 2.0.0.2
更新时间 2021-12-15
上架时间 2021-12-12
评分 3.28/5 共29次评分
开发者 w3technic
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.w3technic.com/free-chrome-extensions/return-youtube-dislike-count-chrome-extension/
帮助页面URL https://www.w3technic.com/free-chrome-extensions/return-youtube-dislike-count-chrome-extension/
隐私政策页面URL https://w3technic.com/privacy-policy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Return YouTube Dislike Count\u2122",
    "description": "Show Youtube Dislike Count Again!",
    "version": "2.0.0.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "ryd.background.js"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.music.youtube.com\/*"
            ],
            "js": [
                "ryd.content-script.js",
                "ryd.tools.js",
                "\/init\/init.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}