您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
tumblr.com 追踪標籤(TrackedTags)展開於側邊欄
// ==UserScript== // @name Restore tumblr tags to sidebar // @namespace http://kimira.dreamwidth.org http://userscripts.org/scripts/show/149566 // @description tumblr.com 追踪標籤(TrackedTags)展開於側邊欄 // @include http://www.tumblr.com/dashboard // @include http://www.tumblr.com/dashboard/* // @include http://www.tumblr.com/tagged/* // @include http://www.tumblr.com/blog/* // @include https://www.tumblr.com/dashboard // @include https://www.tumblr.com/dashboard/* // @include https://www.tumblr.com/tagged/* // @include https://www.tumblr.com/blog/* // @grant none // @version 1.11 // ==/UserScript== var tagCode = document.getElementById("search_results_container").innerHTML; var rightCol = document.getElementById("right_column").innerHTML; tagCode = tagCode.slice(tagCode.indexOf("<div class=\"popover_menu"),tagCode.indexOf("<div class=\"popover_menu_item ender")-75); tagCode = tagCode.replace(/div class="popover_menu_item tracked_tag /g,"li class=\""); tagCode = tagCode.replace(/<a /g,"<a class=\"tag\" "); tagCode = tagCode.replace(/<div class="thumb.*?div>/g,""); tagCode = tagCode.replace(/<small.*?>/g,"<span class=\"count\">"); tagCode = tagCode.replace(/10 new posts/g,"10+"); tagCode = tagCode.replace(/ new p\w*/g,""); tagCode = tagCode.replace(/small>/g,"span>"); tagCode = tagCode.replace(/#/g,""); tagCode = tagCode.replace(/<div class="result">/g,""); tagCode = tagCode.replace(/<\/div>/g,""); tagCode = "<ul class=\"controls_section\">" + tagCode + "</li></ul>\n\n<div id=\"tumblr_radar"; rightCol = rightCol.replace("<div id=\"tumblr_radar",tagCode); document.getElementById("right_column").innerHTML = rightCol; var bullshit = document.getElementById("search_query").innerHTML; bullshit = bullshit.replace(/placeholder="Search tags & blogs" /g,"placeholder=\"\" "); document.getElementById("search_query").innerHTML = bullshit;
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址