Created
September 11, 2014 15:12
-
-
Save Akkiesoft/56e9bee5ea8c979f4b7e to your computer and use it in GitHub Desktop.
ハイクのTLの画像サイズをでかくする
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 Expand picture size in Haiku timeline | |
// @description ハイクのTLの画像サイズをでかくする | |
// @license MIT License; http://sourceforge.jp/projects/opensource/wiki/licenses%2FMIT_license | |
// @include http://h.hatena.ne.jp/ | |
// @include http://h.hatena.ne.jp/following | |
// @include http://h.hatena.ne.jp/?mode=entries | |
// @include http://h.hatena.ne.jp/*/ | |
// @include http://h.hatena.ne.jp/*/* | |
// @include http://h.hatena.ne.jp/target* | |
// @include http://h.hatena.ne.jp/album | |
// @include http://h.hatena.com/ | |
// @include http://h.hatena.com/following | |
// @include http://h.hatena.com/?mode=entries | |
// @include http://h.hatena.com/*/ | |
// @include http://h.hatena.com/*/* | |
// @include http://h.hatena.com/album | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
GM_addStyle(" \ | |
div.body img { \ | |
max-width : 400px; \ | |
max-height: 400px; \ | |
} \ | |
"); | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment