YouTube Video Hider

Hide youtube videos and thumbnails

YouTube Video Hider क्या है?

YouTube Video Hider Diogo Peres द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide youtube videos and thumbnails"।

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

screenshot

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

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

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

                        Increase your productivity and don't get distracted by youtube videos while listening to music.
This app has multiple options:
* Turn all videos and thumbnails to black;
* Minimize main video to show only the timeline. Minimize all the thumbnail's and zoom on hover.
* Invert the color of all videos and thumbnails.

This app is open-source and all the code is on: https://github.com/diogoperes/youtube-video-hider-app                    

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

नाम YouTube Video Hider YouTube Video Hider
ID bppihnfgnlpklmhaojomngahgfpmpnbi
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi
विवरण Hide youtube videos and thumbnails
फ़ाइल का आकार 41.22 KB
स्थापना संख्या 123
वर्तमान संस्करण 0.0.0.4
अंतिम अपडेट 2019-11-30
प्रकाशन तिथि 2019-11-30
रेटिंग 4.78/5 कुल 9 रेटिंग्स
डेवलपर Diogo Peres
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.mrperes.com/youtube-video-hider/
सहायता पृष्ठ URL http://www.mrperes.com/youtube-video-hider/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Video Hider",
    "version": "0.0.0.4",
    "description": "Hide youtube videos and thumbnails",
    "browser_action": {
        "default_icon": ".\/img\/eye.png",
        "default_popup": ".\/popup.html"
    },
    "web_accessible_resources": [
        "css\/hide.css",
        "css\/minimize.css",
        "css\/invert.css"
    ],
    "author": "Diogo Peres",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/js\/contentscript.js",
                ".\/js\/hideVideoScript.js",
                ".\/js\/showVideoScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ],
        "persistent": true
    }
}