Youtube Untrend

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

什麼是Youtube Untrend?

Youtube Untrend是由dorian.grolaux開發的Chrome擴展程式,該擴展的主要功能是“This extension simply removes the 'Trending' tab on the Youtube home page.”。

擴展截圖

screenshot
screenshot

下載Youtube Untrend擴展crx文件

下載Youtube Untrend擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Youtube Untrend Youtube Untrend
ID eopimnkjhiiigfakbhiehpiacdiolcpc
官方網址 https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc
簡介 This extension simply removes the 'Trending' tab on the Youtube home page.
檔案大小 29.2 KB
安裝次數 21
目前版本 0.2
更新時間 2016-01-10
上架時間 2016-01-10
評分 5.00/5 共 3 次評分
開發者 dorian.grolaux
付費類型 free
支援的語言 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"
            ]
        }
    ]
}