您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes the YouTube logo to link to user's subscription feed instead of homepage (script only works if you are signed in) Original Author: tolanri @ http://userscripts-mirror.org/users/518143
当前为
// ==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) Original Author: tolanri @ http://userscripts-mirror.org/users/518143 // @version 1.0.3b // @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('yt-masthead'); 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]); } }