Hide Youtube

Hide Youtube in Office, College or restricted areas.

Co to jest Hide Youtube?

Hide Youtube to rozszerzenie Chrome opracowane przez Tamilselvan, a jego główną funkcją jest „Hide Youtube in Office, College or restricted areas.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Hide Youtube

Pobierz pliki rozszerzeń Hide Youtube 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

                        This extension will allow you to use youtube in college or office work place where you have access to youtube but you are not supposed to view it.
It change the title into Google, Changes the logo into Google's logo.
It hides rest of you tube signature while playing the video.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hide Youtube Hide Youtube
ID llikcpkonlnkadcelohfaamfaocoebna
Oficjalny URL https://chrome.google.com/webstore/detail/hide-youtube/llikcpkonlnkadcelohfaamfaocoebna
Opis Hide Youtube in Office, College or restricted areas.
Rozmiar pliku 57.02 KB
Liczba instalacji 66
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-06-23
Data Publikacji 2016-06-23
Ocena 4.80/5 Łącznie 5 Oceny
Deweloper Tamilselvan
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": "Hide Youtube",
    "short_name": "HTube",
    "description": "Hide Youtube in Office, College or restricted areas.",
    "version": "1.0",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "lib\/jquery.js",
                "youtube.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "lib\/jquery.js",
                "youtube.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.youtube.com\/"
            ],
            "js": [
                "lib\/jquery.js",
                "youtube.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ]
}