YourTube - Make Youtube Productive

Youtube should be productive

YourTube - Make Youtube Productiveคืออะไร?

YourTube - Make Youtube Productive เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rahulgurung.com และคุณลักษณะหลักของมันคือ "Youtube should be productive"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YourTube - Make Youtube Productive

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}