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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |