YouTube Recommendation Decliner

Declines video recommendations from YouTube to help lessen procrastination.

YouTube Recommendation Decliner란 무엇입니까?

YouTube Recommendation Decliner은(는) Anders Steen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Declines video recommendations from YouTube to help lessen procrastination."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube Recommendation Decliner 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hides videos that are considered recommended videos. This includes the YouTube home and trending pages, as well as the related videos appearing below or to the side of video playback. Recommended videos appearing after videos are also declined. Searches, subscriptions, history, library and channels are unaffected.

The point is to get the recommended videos out of sight, in order to decrease the risk of users getting stuck clicking on recommended videos for hours.                    

확장 프로그램 기본 정보

이름 YouTube Recommendation Decliner YouTube Recommendation Decliner
ID feoddkggeangnmgoomlcdldcffoidake
공식 URL https://chromewebstore.google.com/detail/youtube-recommendation-de/feoddkggeangnmgoomlcdldcffoidake
설명 Declines video recommendations from YouTube to help lessen procrastination.
파일 크기 18.43 KB
설치 횟수 15
현재 버전 1.1.0
최근 업데이트 2020-12-14
출시 날짜 2020-03-11
평점 5.00/5 총 3 개의 평점
개발자 Anders Steen
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Recommendation Decliner",
    "short_name": "YT Decliner",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Declines video recommendations from YouTube to help lessen procrastination.",
    "icons": {
        "16": "\/images\/icon_16.png",
        "128": "\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                "\/js\/contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "\/images\/icon_128.png",
        "default_popup": "\/html\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}