Return YouTube Dislikes Counter

Returning the ability to see the number of dislikes

什麼是Return YouTube Dislikes Counter?

Return YouTube Dislikes Counter是由Kronus開發的Chrome擴展程式,該擴展的主要功能是“Returning the ability to see the number of dislikes”。

擴展截圖

screenshot
screenshot

下載Return YouTube Dislikes Counter擴展crx文件

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

擴展使用說明

                        The extension returns the ability to see how many people have put dislikes.                    

擴展基本資訊

名稱 Return YouTube Dislikes Counter Return YouTube Dislikes Counter
ID oljgiamaflelpmdlmdjpooahpmiobclo
官方網址 https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo
簡介 Returning the ability to see the number of dislikes
檔案大小 16.96 KB
安裝次數 161
目前版本 1.2
更新時間 2021-12-23
上架時間 2021-11-30
開發者 Kronus
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Return YouTube Dislikes Counter",
    "description": "Returning the ability to see the number of dislikes",
    "version": "1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "ryd.background.js"
    },
    "icons": {
        "64": "icons\/icon64.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": [
                "bundled-content-script.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}