YouTube Dislike Return

Bring back the dislike of youtube videos for Google Chrome™!

什麼是YouTube Dislike Return?

YouTube Dislike Return是由lvstools開發的Chrome擴展程式,該擴展的主要功能是“Bring back the dislike of youtube videos for Google Chrome™!”。

擴展截圖

screenshot
screenshot

下載YouTube Dislike Return擴展crx文件

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

擴展使用說明

                        Are you curious to know if the video you are watching on youtube is rated good or not?

Youtube has removed the display of dislikes from their api. This affects the user's viewing and objective evaluation of the video. Therefore bringing dislike is necessary

Starting December 13th 2021, YouTube removed the ability to see dislikes from their API.
This extension aims to restore power to users by using a combination of archived like and dislike data, as well as the likes and dislikes made by extension users to show the most accurate ratings.

Unpopular videos uploaded after December 13th, 2021 may have less accurate data shown than more popular videos.                    

擴展基本資訊

名稱 YouTube Dislike Return YouTube Dislike Return
ID djehjjepdeoelfofoggbfmdjjblgfoke
官方網址 https://chrome.google.com/webstore/detail/youtube-dislike-return/djehjjepdeoelfofoggbfmdjjblgfoke
簡介 Bring back the dislike of youtube videos for Google Chrome™!
檔案大小 263 KB
安裝次數 1,058
目前版本 1.0.3
更新時間 2022-03-21
上架時間 2022-03-21
評分 1.00/5 共 4 次評分
開發者 lvstools
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://1bestlinks.net/page/privacy-policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Dislike Return",
    "description": "Bring back the dislike of youtube videos for Google Chrome\u2122!",
    "version": "1.0.3",
    "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": [
                "bundled-content-script.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}