您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Restores traditional small text on tumblr asks. Text will only appear small for users with the script installed. This will only work on Tumblr's "vanilla" dashboard (it will not work on the Beta dashboard).
// ==UserScript== // @name Small Text on Tumblr Asks // @description Restores traditional small text on tumblr asks. Text will only appear small for users with the script installed. This will only work on Tumblr's "vanilla" dashboard (it will not work on the Beta dashboard). // @namespace gwennifer // @match https://www.tumblr.com/* // @version 1.1.0 // @license MIT // @grant none // ==/UserScript== var interval = setInterval(smallChange, 500); function smallChange(size){ var mywords = document.getElementsByTagName("p"); var answers = document.getElementsByClassName("answer post_info"); for(var i=0; i<answers.length; i++){ answers[i].setAttribute("style",'font-size:small'); } }