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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sets the "Subscriptions" page as your default homepage on YouTube by redirecting all requests at the browser level"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Replace YouTube's Home with Subscriptions एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}