Return YouTube Dislike

Returns ability to see dislikes

Return YouTube Dislike란 무엇입니까?

Return YouTube Dislike은(는) https://returnyoutubedislike.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Returns ability to see dislikes"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Return YouTube Dislike 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Return YouTube Dislike restores the ability to see dislikes on YouTube.

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.

Currently has almost a billion videos data stored before December 13th, 2021

Actively growing and keeping up to date with uploads after December 13th, 2021

The more users that use the extension, the more accurate it will be

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

This extension is currently in an active development phase, so if you experience any issues, don’t hesitate to report them on our GitHub page or in our Discord server.

More features to come soon! 

https://github.com/Anarios/return-youtube-dislike
https://returnyoutubedislike.com/                    

확장 프로그램 기본 정보

이름 Return YouTube Dislike Return YouTube Dislike
ID gebbhagfogifgggkldgodflihgfeippi
공식 URL https://chromewebstore.google.com/detail/return-youtube-dislike/gebbhagfogifgggkldgodflihgfeippi
설명 Returns ability to see dislikes
파일 크기 121 KB
설치 횟수 4,880,279
현재 버전 3.0.0.14
최근 업데이트 2023-12-13
출시 날짜 2021-11-19
평점 4.76/5 총 16275 개의 평점
개발자 https://returnyoutubedislike.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.returnyoutubedislike.com/
도움말 페이지 URL https://www.returnyoutubedislike.com/
지원되는 언어 de,en,fr,nl,tr,es,it,pl,pt-BR,cs,el,ru,uk,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDesc__",
    "default_locale": "en",
    "version": "3.0.0.14",
    "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"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ryd.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "popup.html",
        "open_in_tab": false
    }
}