ytb not-interested button

add do-not-interest button to video.

ytb not-interested button란 무엇입니까?

ytb not-interested button은(는) huhuang03에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "add do-not-interest button to video."입니다.

확장 프로그램 스크린샷

screenshot

ytb not-interested button 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It's boring when you want click the not-interested button in youtube website. You need click the menu button, wait for the popup menu and the click the not-interested button.

This extension is for add the not-interested button in the first level. So you can quick click and save time.

Please notice: you need logined to ytb to let this extension work. Because this extension do the *I not interested* behavior, so need ytb logined.

The source is at https://github.com/huhuang03/ytb_dni.

If you think it's useful, please conside buy me a coffe https://www.buymeacoffee.com/huhuang03                    

확장 프로그램 기본 정보

이름 ytb not-interested button ytb not-interested button
ID okfiigkfppbpfjaiffmllkkfbpdnhofn
공식 URL https://chromewebstore.google.com/detail/ytb-not-interested-button/okfiigkfppbpfjaiffmllkkfbpdnhofn
설명 add do-not-interest button to video.
파일 크기 20.93 KB
설치 횟수 1,512
현재 버전 0.1.4
최근 업데이트 2024-01-20
출시 날짜 2021-03-18
평점 4.15/5 총 41 개의 평점
개발자 huhuang03
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ytb not-interested button",
    "description": "add do-not-interest button to video.",
    "version": "0.1.4",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "add_not_interested.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "ic_not_interested_16.png",
        "32": "ic_not_interested_32.png",
        "48": "ic_not_interested_48.png",
        "128": "ic_not_interested_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ]
}