YouTube Video Hider

Hide youtube videos and thumbnails

Wat is YouTube Video Hider?

YouTube Video Hider is een Chrome-extensie ontwikkeld door Diogo Peres, en de belangrijkste functie is "Hide youtube videos and thumbnails".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Video Hider

Download YouTube Video Hider-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam YouTube Video Hider YouTube Video Hider
ID bppihnfgnlpklmhaojomngahgfpmpnbi
Officiële URL https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi
Beschrijving Hide youtube videos and thumbnails
Bestandsgrootte 41.22 KB
Aantal Installaties 123
Huidige Versie 0.0.0.4
Laatst Bijgewerkt 2019-11-30
Publicatiedatum 2019-11-30
Beoordeling 4.78/5 Totaal 9 Beoordelingen
Ontwikkelaar Diogo Peres
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://www.mrperes.com/youtube-video-hider/
Help Pagina-URL http://www.mrperes.com/youtube-video-hider/
Ondersteunde Talen 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
    }
}