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
官方網址 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\/*"
            ]
        }
    ]
}