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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    }
}