Last active
July 3, 2018 02:28
-
-
Save WireFisher/0ca5410d26e45b48c1720bf521870e9c to your computer and use it in GitHub Desktop.
bugs text bigger
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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