Skip to content

Instantly share code, notes, and snippets.

@tosuke
Created April 6, 2017 09:45
Show Gist options
  • Save tosuke/8814a2059f6721f2dd736cd4bdf0528f to your computer and use it in GitHub Desktop.
Save tosuke/8814a2059f6721f2dd736cd4bdf0528f to your computer and use it in GitHub Desktop.
絵文字がぶっ壊れるのをなんとかする
// ==UserScript==
// @name MisskeyEmojiFixer
// @description Misskeyの絵文字表示を改善する
// @namespace https://tosuke.github.io/blog
// @version 1.0
// @match https://misskey.link
// @grant none
// ==/UserScript==
(function(){
'use strict'
var dom = document.createElement('style')
dom.innerText = ".text{font-family: sans-serif;}"
document.body.appendChild(dom)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment