Replace YouTube's Home with Subscriptions

Sets the "Subscriptions" page as your default homepage on YouTube by redirecting all requests at the browser level

什麼是Replace YouTube's Home with Subscriptions?

Replace YouTube's Home with Subscriptions是由SeinopSys開發的Chrome擴展程式,該擴展的主要功能是“Sets the "Subscriptions" page as your default homepage on YouTube by redirecting all requests at the browser level”。

擴展截圖

screenshot

下載Replace YouTube's Home with Subscriptions擴展crx文件

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

擴展使用說明

                        This small extension is meant to fix the missing setting that would allow avid users to go directly to the Subscriptions section of the YouTube website when clicking the logo. Great for anyone who wants to avoid the Home page by all means. Also redirects the "Home" menu item in the sidebar, or heck, any link that points to https://www.youtube.com/, no matter where it came from.

I used to maintain a userscript for this purpose, but due to YouTube's upcoming Material redesign's use of Polymer 2.0 I simply couldn't work around their event handlers.

This extension is open source, you can find the source code here: https://github.com/SeinopSys/YTMySubs-chrome                    

擴展基本資訊

名稱 Replace YouTube's Home with Subscriptions Replace YouTube's Home with Subscriptions
ID nfffnooajndeeejgejfkbphjocpkblog
官方網址 https://chromewebstore.google.com/detail/replace-youtubes-home-wit/nfffnooajndeeejgejfkbphjocpkblog
簡介 Sets the "Subscriptions" page as your default homepage on YouTube by redirecting all requests at the browser level
檔案大小 21.59 KB
安裝次數 1,976
目前版本 1.1.1
更新時間 2024-02-04
上架時間 2018-09-03
評分 4.71/5 共 41 次評分
開發者 SeinopSys
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/SeinopSys/ytmysubs-chrome
說明頁面URL https://github.com/SeinopSys/ytmysubs-chrome/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Replace YouTube's Home with Subscriptions",
    "short_name": "YTMySubs",
    "description": "Sets the \"Subscriptions\" page as your default homepage on YouTube by redirecting all requests at the browser level",
    "version": "1.1.1",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*.youtube.com\/",
        "tabs"
    ],
    "background": {
        "page": "background.html"
    }
}