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
官方URL 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"
    }
}