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文件

下載Not Now Youtube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}