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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SeinopSys, και η κύρια λειτουργία του είναι "Sets the "Subscriptions" page as your default homepage on YouTube by redirecting all requests at the browser level".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Replace YouTube's Home with Subscriptions
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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" } } |