Last active
May 12, 2017 07:02
-
-
Save oieioi/f53793b144bdfbb2bfc9 to your computer and use it in GitHub Desktop.
http://postd.cc の記事のおしゃれなバックグラウンドが邪魔なので消す
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 POSTDを軽くする | |
// @namespace http://your.homepage/ | |
// @version 0.1 | |
// @description enter something useful | |
// @author You | |
// @match http://postd.cc/** | |
// @grant none | |
// ==/UserScript== | |
jQuery(function(){ | |
jQuery('.backstretch').remove(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment