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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
            ]
        }
    ]
}