您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Forces newly-dropdownable user tools back into the right sidebar
// ==UserScript== // @name Always-visible Tumblr Tools // @namespace http://blackjackkent.tumblr.com // @version 0.2 // @description Forces newly-dropdownable user tools back into the right sidebar // @author BlackjackKent (blackjackkent.tumblr.com) // @match https://www.tumblr.com/* // @match http://www.tumblr.com/* // @grant none // @locale English (en) // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== $(document).ready(function() { var checkExist = setInterval(function() { $('.tab_nav_account').click(); if ($('.popover--account-popover').length) { console.log("Exists!"); clearInterval(checkExist); var pop = $('.popover--account-popover'); var html = pop.html(); $('#right_column').prepend(html); pop.remove(); $('.tab_nav_account').click(); $('#right_column .popover').css('position','relative'); } }, 500); // check every 100ms });