Skip to content

Instantly share code, notes, and snippets.

@Akkiesoft
Created September 11, 2014 15:12
Show Gist options
  • Save Akkiesoft/56e9bee5ea8c979f4b7e to your computer and use it in GitHub Desktop.
Save Akkiesoft/56e9bee5ea8c979f4b7e to your computer and use it in GitHub Desktop.
ハイクのTLの画像サイズをでかくする
// ==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