Small Text on Tumblr Asks

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');
  }
}