Youtube Untrend

This extension simply removes the 'Trending' tab on the Youtube home page.

Youtube Untrend란 무엇입니까?

Youtube Untrend은(는) dorian.grolaux에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension simply removes the 'Trending' tab on the Youtube home page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Youtube Untrend 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Don't like this trending tab ? I don't either.                    

확장 프로그램 기본 정보

이름 Youtube Untrend Youtube Untrend
ID eopimnkjhiiigfakbhiehpiacdiolcpc
공식 URL https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc
설명 This extension simply removes the 'Trending' tab on the Youtube home page.
파일 크기 29.2 KB
설치 횟수 21
현재 버전 0.2
최근 업데이트 2016-01-10
출시 날짜 2016-01-10
평점 5.00/5 총 3 개의 평점
개발자 dorian.grolaux
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Untrend",
    "short_name": "Removes the 'Trending' tab on Youtube's home page",
    "version": "0.2",
    "description": "This extension simply removes the 'Trending' tab on the Youtube home page.",
    "permissions": [
        "activeTab",
        "*:\/\/www.youtube.com\/"
    ],
    "icons": {
        "16": "icons\/yt_untrend16.png",
        "48": "icons\/yt_untrend48.png",
        "128": "icons\/yt_untrend128.png"
    },
    "offline_enabled": true,
    "page_action": {
        "default_icon": {
            "16": "icons\/yt_untrend16.png",
            "48": "icons\/yt_untrend48.png"
        },
        "default_title": "Youtube Untrend"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/",
                "*:\/\/www.youtube.com\/feed\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}