YourTube - Make Youtube Productive

Youtube should be productive

什么是YourTube - Make Youtube Productive?

YourTube - Make Youtube Productive是由https://rahulgurung.com开发的Chrome扩展程序,该扩展的主要功能是“Youtube should be productive”。

扩展截图

screenshot
screenshot
screenshot

下载YourTube - Make Youtube Productive扩展crx文件

下载YourTube - Make Youtube Productive扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        What's New?
* Bug fixes and improvements

The truth is YouTube is designed to make anyone binge-watch it all day. We want to make it productive for people who use it for work or learning. This extension is an attempt to provide a minimalist approach to Youtube with full customizability.

How is this different ?
1) ⚙️ Customizability: The complete customizablity whether you want to show recommended section and hide comments or vice versa is provided to user.

2) ✨ Adds features: Instead of just hiding some elements. This extension can collapse sidebar by default, expand description by default or disable autoplay feature by default.                    

扩展基本信息

名称 YourTube - Make Youtube Productive YourTube - Make Youtube Productive
ID bepnbjanekhidnggbihpgmajjfgicobk
官方URL https://chromewebstore.google.com/detail/yourtube-make-youtube-pro/bepnbjanekhidnggbihpgmajjfgicobk
简介 Youtube should be productive
文件大小 320 KB
安装次数 392
当前版本 0.2.1
更新时间 2022-04-10
上架时间 2020-10-05
评分 4.75/5 共4次评分
开发者 https://rahulgurung.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/gurrrung/YourTube
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YourTube - Make Youtube Productive",
    "version": "0.2.1",
    "description": "Youtube should be productive",
    "homepage_url": "https:\/\/github.com\/gurrrung\/YourTube.git",
    "manifest_version": 2,
    "minimum_chrome_version": "62",
    "permissions": [
        "storage",
        "https:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.slim.min.js",
                "browser-polyfill.min.js",
                "content.js"
            ],
            "css": [
                "style\/yourtube.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "YourTube",
        "default_popup": "popup.html"
    }
}