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 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 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]);
    }
}