YouTube Header Hider

Simple extension for better watching videos in small window without intrusive YouTube header

Co to jest YouTube Header Hider?

YouTube Header Hider to rozszerzenie Chrome opracowane przez Meosit, a jego główną funkcją jest „Simple extension for better watching videos in small window without intrusive YouTube header”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Header Hider

Pobierz pliki rozszerzeń YouTube Header Hider w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Simple extension for better watching videos in small window without intrusive YouTube header                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Header Hider YouTube Header Hider
ID ilajonkalnicmkhflafhhddkolnpkknf
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-header-hider/ilajonkalnicmkhflafhhddkolnpkknf
Opis Simple extension for better watching videos in small window without intrusive YouTube header
Rozmiar pliku 10.47 KB
Liczba instalacji 14
Aktualna Wersja 2.1.1
Ostatnia Aktualizacja 2018-01-18
Data Publikacji 2018-01-18
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Meosit
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Header Hider",
    "version": "2.1.1",
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content_scripts\/content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/play_96.png",
        "default_title": "YouTube Header Hider",
        "default_popup": "popup\/popup.html"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    }
}