Skip to content

Instantly share code, notes, and snippets.

@WireFisher
Last active July 3, 2018 02:28
Show Gist options
  • Select an option

  • Save WireFisher/0ca5410d26e45b48c1720bf521870e9c to your computer and use it in GitHub Desktop.

Select an option

Save WireFisher/0ca5410d26e45b48c1720bf521870e9c to your computer and use it in GitHub Desktop.
bugs text bigger
// ==UserScript==
// @name bugs bigger
// @namespace https://bugs.chromium.org/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://bugs.chromium.org/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var elements = document.getElementsByClassName("issue_text")
for(var i=0; i<elements.length; i++){
elements[i].style.cssText="font-size:16px;font-family:Consolas;"
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment