Not Now Youtube

This extension will one-click to hide your youtube recommendations so that you can concentrate on your work.

Not Now Youtube란 무엇입니까?

Not Now Youtube은(는) oasisweng에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will one-click to hide your youtube recommendations so that you can concentrate on your work."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Are you tired of clicking into endless recommended videos when you are working? Are you tired of wasting your time in youtube when you can do gym, cook, hang out with your friends and all the rest of the wonderful things in the world?

MERRY CHRISTMAS! Here goes the must-have extension for your needs!

Recommendation in Youtube is F**king annoying. It makes you procrastinating, it makes you forget what you are supposed to search for. It makes you ignore your girlfriend, it makes you forget your friends. Most viciously, it robs your bedtime. It makes your deadlines overdue. Now, it is time for Youtube Recommendations to LEAVE us ALONE! 

Cherish your life, stay away from Youtube Recommendations.                    

확장 프로그램 기본 정보

이름 Not Now Youtube Not Now Youtube
ID mhccheobkmjgkipfgmialdnhfloflnne
공식 URL https://chrome.google.com/webstore/detail/not-now-youtube/mhccheobkmjgkipfgmialdnhfloflnne
설명 This extension will one-click to hide your youtube recommendations so that you can concentrate on your work.
파일 크기 72.35 KB
설치 횟수 341
현재 버전 1.2
최근 업데이트 2014-12-05
출시 날짜 2014-12-05
평점 3.94/5 총 17 개의 평점
개발자 oasisweng
결제 유형 free
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.2",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "*:\/\/*.youtube.com\/*",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "19.png",
            "38": "38.png"
        },
        "default_title": "distraction is removed!"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "hidden-recommendation.css"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}