Created
May 31, 2015 15:46
-
-
Save pandada8/5fdd8807c4bd33c4662b to your computer and use it in GitHub Desktop.
This file contains 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 Change the font of ConoHa | |
// @namespace http://pandada8.me/ | |
// @version 0.1 | |
// @description as the name | |
// @author pandada8 | |
// @match https://manage.conoha.jp/* | |
// @grant none | |
// ==/UserScript== | |
var style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.innerHTML = "body, .select__choice, .news__contents pre, .btn-1, input,textarea,button { font-family:" +'"Hiragino Sans GB" !important;' + "}"; | |
document.querySelector("head").appendChild(style); | |
console.log("GooD Font") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment