Youtube Hider

This is a Chrome extension to hide videos and images on YouTube.

Wat is Youtube Hider?

Youtube Hider is een Chrome-extensie ontwikkeld door Miri Ahn, en de belangrijkste functie is "This is a Chrome extension to hide videos and images on YouTube.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Youtube Hider

Download Youtube 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

                        You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo

Update 1.1 (2019/11/25) 
- Added a button to enable or disable all checkboxes.                    

Basisinformatie over de Extensie

Naam Youtube Hider Youtube Hider
ID cnaimccmiafebfliaiefkdfmdffgmjph
Officiële URL https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph
Beschrijving This is a Chrome extension to hide videos and images on YouTube.
Bestandsgrootte 8.85 KB
Aantal Installaties 60
Huidige Versie 1.1
Laatst Bijgewerkt 2019-11-29
Publicatiedatum 2019-11-29
Beoordeling 4.25/5 Totaal 4 Beoordelingen
Ontwikkelaar Miri Ahn
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/kameru/youtube-hider/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Hider",
    "version": "1.1",
    "description": "This is a Chrome extension to hide videos and images on YouTube.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "hidingController.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "hide_thumb.css",
        "hide_video.css",
        "hide_icon.css",
        "popup.js",
        "hidingController.js"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "page_action": {
        "default_icon": "images\/hide.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}