Hide Youtube

Hide Youtube in Office, College or restricted areas.

Vad är Hide Youtube?

Hide Youtube är en Chrome-tillägg utvecklad av Tamilselvan, och dess huvudfunktion är "Hide Youtube in Office, College or restricted areas.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Hide Youtube-förlängningens CRX-fil

Ladda ner Hide Youtube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Hide Youtube Hide Youtube
ID llikcpkonlnkadcelohfaamfaocoebna
Officiell webbadress https://chrome.google.com/webstore/detail/hide-youtube/llikcpkonlnkadcelohfaamfaocoebna
Beskrivning Hide Youtube in Office, College or restricted areas.
Filstorlek 57.02 KB
Antal Installationer 66
Aktuell Version 1.0
Senast Uppdaterad 2016-06-23
Publiceringsdatum 2016-06-23
Betyg 4.80/5 Totalt 5 Betyg
Utvecklare Tamilselvan
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}