Youtube Logo - Link to subscriptions feed

Changes the YouTube logo to link to user's subscription feed instead of homepage (script only works if you are signed in) The original author: tolanri @ http://userscripts-mirror.org/users/518143

目前為 2015-11-11 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 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     Changes the YouTube logo to link to user's subscription feed instead of homepage (script only works if you are signed in) The original author: tolanri @ http://userscripts-mirror.org/users/518143
// @version         1.0.4
// @include         http://*.youtube.com/*
// @include         https://*.youtube.com/*
// @supportURL      https://greasyfork.org/en/scripts/13582/feedback
// @author          aciidic
// ==/UserScript==

cnr = function(el) {
    if (/\/(:?\W|$)/.test(el.getAttribute('href'))) {
        return el.href = '/feed/subscriptions';
    }
}

var logo = document.getElementById('logo-container');
var signedin = document.getElementById('yt-masthead-user') != null;

if ( signedin == true ) {
    cnr(logo);
    var els = logo.getElementsByTagName('*');
    for (var i = 0, l = els.length; i < l; i++) {
        cnr(els[i]);
    }
}