YourTube - Make Youtube Productive

Youtube should be productive

YourTube - Make Youtube Productive क्या है?

YourTube - Make Youtube Productive https://rahulgurung.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Youtube should be productive"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YourTube - Make Youtube Productive एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}