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 là gì?

Replace YouTube's Home with Subscriptions là một tiện ích mở rộng Chrome được phát triển bởi SeinopSys, và tính năng chính của nó là "Sets the "Subscriptions" page as your default homepage on YouTube by redirecting all requests at the browser level".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Replace YouTube's Home with Subscriptions

Tải xuống các tệp mở rộng Replace YouTube's Home with Subscriptions dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Replace YouTube's Home with Subscriptions Replace YouTube's Home with Subscriptions
ID nfffnooajndeeejgejfkbphjocpkblog
URL Chính Thức https://chromewebstore.google.com/detail/replace-youtubes-home-wit/nfffnooajndeeejgejfkbphjocpkblog
Mô tả Sets the "Subscriptions" page as your default homepage on YouTube by redirecting all requests at the browser level
Kích Thước Tệp 21.59 KB
Số Lần Cài Đặt 1,976
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2024-02-04
Ngày Phát Hành 2018-09-03
Đánh Giá 4.71/5 Tổng số 41 Đánh Giá
Nhà Phát Triển SeinopSys
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SeinopSys/ytmysubs-chrome
URL Trang Trợ Giúp https://github.com/SeinopSys/ytmysubs-chrome/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}