Return YouTube Dislike Button

Returns ability to see dislikes on YouTube

Return YouTube Dislike Button란 무엇입니까?

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

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Returns ability to see dislike statistics and rating bar.

Shows full (not-shortened) likes and dislikes on hover over rating bar.


YouTube is hiding Youtube Dislikes from everyone except the creator itself. But in the mean time, we can use Youtube Data v3 API to fetch dislikes of a video and show it to the consumer (you). Youtube will break this by 30th December, but Yt Dislikes viewer comes with an archive API that automatically fetches dislikes of every video you watch (after installing the extension) and saves it into an open-sourced database (only the video ID and dislike count, none of your data). In future, we have many big plans for this as well.                    

확장 프로그램 기본 정보

이름 Return YouTube Dislike Button Return YouTube Dislike Button
ID hkipgenlhedgfkjlajomnhaiafnhnjjf
공식 URL https://chrome.google.com/webstore/detail/return-youtube-dislike-bu/hkipgenlhedgfkjlajomnhaiafnhnjjf
설명 Returns ability to see dislikes on YouTube
파일 크기 17.98 KB
설치 횟수 6,970
현재 버전 2.1
최근 업데이트 2023-02-22
출시 날짜 2021-12-02
평점 3.27/5 총 22 개의 평점
개발자 AdDev
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://pastebin.com/raw/AdhZ19M3
개인정보 보호 정책 페이지 URL https://www.amann.com/meta/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Return YouTube Dislike Button",
    "description": "Returns ability to see dislikes on YouTube",
    "version": "2.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "return-youtube-dislike.background.js"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "oauth2": {
        "client_id": "292556337651-kbmq2pduaejrol457a5s1089ut6ug0u9.apps.googleusercontent.com",
        "scopes": [
            "openid"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "return-youtube-dislike.content-script.js"
            ],
            "run_at": "document_start",
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "return-youtube-dislike.script.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}