Skip to content

Instantly share code, notes, and snippets.

@pandada8
Created May 31, 2015 15:46
Show Gist options
  • Save pandada8/5fdd8807c4bd33c4662b to your computer and use it in GitHub Desktop.
Save pandada8/5fdd8807c4bd33c4662b to your computer and use it in GitHub Desktop.
// ==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