YouTube Video Hider

Hide youtube videos and thumbnails

Qu'est-ce que YouTube Video Hider ?

YouTube Video Hider est une extension Chrome développée par Diogo Peres, et sa fonction principale est "Hide youtube videos and thumbnails".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Video Hider

Téléchargez les fichiers d'extension YouTube Video Hider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom YouTube Video Hider YouTube Video Hider
ID bppihnfgnlpklmhaojomngahgfpmpnbi
URL Officiel https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi
Description Hide youtube videos and thumbnails
Taille du Fichier 41.22 KB
Nombre d'Installations 123
Version Actuelle 0.0.0.4
Dernière Mise à Jour 2019-11-30
Date de Publication 2019-11-30
Évaluation 4.78/5 Total 9 Évaluations
Développeur Diogo Peres
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.mrperes.com/youtube-video-hider/
URL de la Page d'Aide http://www.mrperes.com/youtube-video-hider/
Langues Prises en Charge 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
    }
}