Youtube Untrend

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

Apa itu Youtube Untrend?

Youtube Untrend adalah ekstensi Chrome yang dikembangkan oleh dorian.grolaux, dan fitur utamanya adalah "This extension simply removes the 'Trending' tab on the Youtube home page.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Youtube Untrend

Unduh file ekstensi Youtube Untrend dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Youtube Untrend Youtube Untrend
ID eopimnkjhiiigfakbhiehpiacdiolcpc
URL Resmi https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc
Deskripsi This extension simply removes the 'Trending' tab on the Youtube home page.
Ukuran File 29.2 KB
Jumlah Instalasi 21
Versi Saat Ini 0.2
Terakhir Diperbarui 2016-01-10
Tanggal Publikasi 2016-01-10
Penilaian 5.00/5 Total 3 Penilaian
Pengembang dorian.grolaux
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}