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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |