Youtube Hider

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

Co je Youtube Hider?

Youtube Hider je rozšíření Chrome vyvinuté Miri Ahn, a jeho hlavní funkcí je „This is a Chrome extension to hide videos and images on YouTube.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Youtube Hider

Stáhněte si soubory rozšíření Youtube Hider ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Youtube Hider Youtube Hider
ID cnaimccmiafebfliaiefkdfmdffgmjph
Oficiální URL https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph
Popis This is a Chrome extension to hide videos and images on YouTube.
Velikost souboru 8.85 KB
Počet instalací 60
Aktuální Verze 1.1
Poslední Aktualizace 2019-11-29
Datum Vydání 2019-11-29
Hodnocení 4.25/5 Celkem 4 Hodnocení
Vývojář Miri Ahn
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/kameru/youtube-hider/issues
Podporované Jazyky 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
}