DISLIKE I'll be back

An extension that will restore the lost dislikes on your You Tube videos. Now you will again have the opportunity to select…

DISLIKE I'll be back란 무엇입니까?

DISLIKE I'll be back은(는) WG web-products에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that will restore the lost dislikes on your You Tube videos. Now you will again have the opportunity to select…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

DISLIKE I'll be back 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An extension that will restore the lost dislikes on your You Tube videos. Now you will again have the opportunity to select suitable videos based on dislikes.
To do this, just install this extension, and it will restore the number of dissatisfied ratings for the videos.
##
#
In early November, YouTube underwent a major change. On the video hosting, it was decided to remove the display of the number of dislikes.                    

확장 프로그램 기본 정보

이름 DISLIKE I'll be back DISLIKE I'll be back
ID jabfapildgnlaeeenmnimphihfdbljno
공식 URL https://chromewebstore.google.com/detail/dislike-ill-be-back/jabfapildgnlaeeenmnimphihfdbljno
설명 An extension that will restore the lost dislikes on your You Tube videos. Now you will again have the opportunity to select…
파일 크기 52.32 KB
설치 횟수 14
현재 버전 1.0.1
최근 업데이트 2022-05-06
출시 날짜 2022-05-05
개발자 WG web-products
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://pastebin.com/gjmUMkFN
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DISLIKE I'll be back",
    "version": "1.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "ryd.background.js"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "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\/*"
            ]
        }
    ]
}