Youtube Logo - Link to subscriptions feed

Change YouTube logo link to user's subscription feed instead of homepage (only when logged in)

目前為 2017-08-15 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            Youtube Logo - Link to subscriptions feed
// @namespace       Youtube Logo - Link to subscriptions feed
// @description     Change YouTube logo link to user's subscription feed instead of homepage (only when logged in)
// @version         1.1.0
// @include         *://*.youtube.tld/*
// @supportURL      https://greasyfork.org/en/scripts/13582/feedback
// @author          aciid
// ==/UserScript==

function runScript() {
    try {
		//console.info("Running Youtube Logo - Link to subscriptions feed");
        if (document.getElementById("yt-masthead-user") != null) {																// Check user is logged in (old design)
			var LogoElement = document.getElementById("logo-container");                    									// Get logo element
            LogoElement.href = "/feed/subscriptions";                                       									// Update logo element URL
            LogoElement.getElementsByTagName('area')[0].href = "/feed/subscriptions";       									// Update special event logo URL		
		} else if (document.getElementById("end").getElementsByTagName("ytd-notification-topbar-button-renderer") != null) {	// Check user is logged in (new design)
			document.getElementById("logo").getElementsByTagName('a')[0].href = "/feed/subscriptions";							// Update logo element URL	        
        }
    } catch (e) {
        // Try catch used to suppress errors if logo element or special event logo area map are unavailable
    }
}

document.addEventListener('readystatechange', runScript);
document.addEventListener('spfdone', runScript);