Simpli Youtube

Simplifies the Youtube viewing experience

Simpli Youtube क्या है?

Simpli Youtube tldralgos द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simplifies the Youtube viewing experience"।

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

screenshot
screenshot

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

crx प्रारूप में Simpli Youtube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Remove YouTube recomendations , comments, and more to simplify your Youtube experience.
With all the control given to the user remove as little or as much as you want.

 This extension enables you to reduce distractions and  take control of your time while browsing YouTube in the following ways:

- Hide comments
- Simplify the navigation drawer
- Hide recommended video types 
- Hide video information on videos
- Along with many more fully customizable features.

The options are also heavily customizable, so you can create exactly the experience you want.
So download and enjoy your simplified version of YouTube.                    

एक्सटेंशन की मूल जानकारी

नाम Simpli Youtube Simpli Youtube
ID obfdcjijgiooldbhohidceamnppmkail
आधिकारिक URL https://chromewebstore.google.com/detail/simpli-youtube/obfdcjijgiooldbhohidceamnppmkail
विवरण Simplifies the Youtube viewing experience
फ़ाइल का आकार 16.79 KB
स्थापना संख्या 72
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2021-01-07
प्रकाशन तिथि 2021-01-07
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर tldralgos
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simpli Youtube",
    "description": "Simplifies the Youtube viewing experience",
    "version": "0.1.0",
    "permissions": [
        "*:\/\/www.youtube.com\/*",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "mainpop.html",
        "default_title": "Youtube Rabbit Hole",
        "default_icon": {
            "16": "image\/logo_16.png",
            "32": "image\/logo_32.png",
            "48": "image\/logo_48.png",
            "128": "image\/logo_128.png"
        }
    },
    "icons": {
        "16": "image\/logo_16.png",
        "32": "image\/logo_32.png",
        "48": "image\/logo_48.png",
        "128": "image\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}