Youtube Untrend

This extension simply removes the 'Trending' tab on the Youtube home page.

Co to jest Youtube Untrend?

Youtube Untrend to rozszerzenie Chrome opracowane przez dorian.grolaux, a jego główną funkcją jest „This extension simply removes the 'Trending' tab on the Youtube home page.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube Untrend

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

                        Don't like this trending tab ? I don't either.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Untrend Youtube Untrend
ID eopimnkjhiiigfakbhiehpiacdiolcpc
Oficjalny URL https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc
Opis This extension simply removes the 'Trending' tab on the Youtube home page.
Rozmiar pliku 29.2 KB
Liczba instalacji 21
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2016-01-10
Data Publikacji 2016-01-10
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper dorian.grolaux
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 Untrend",
    "short_name": "Removes the 'Trending' tab on Youtube's home page",
    "version": "0.2",
    "description": "This extension simply removes the 'Trending' tab on the Youtube home page.",
    "permissions": [
        "activeTab",
        "*:\/\/www.youtube.com\/"
    ],
    "icons": {
        "16": "icons\/yt_untrend16.png",
        "48": "icons\/yt_untrend48.png",
        "128": "icons\/yt_untrend128.png"
    },
    "offline_enabled": true,
    "page_action": {
        "default_icon": {
            "16": "icons\/yt_untrend16.png",
            "48": "icons\/yt_untrend48.png"
        },
        "default_title": "Youtube Untrend"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/",
                "*:\/\/www.youtube.com\/feed\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}