Skip to content

Instantly share code, notes, and snippets.

@cherenkov
Created November 8, 2009 10:41
Show Gist options
  • Save cherenkov/229204 to your computer and use it in GitHub Desktop.
Save cherenkov/229204 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name ImageContentTypeFix
// @namespace http://d.hatena.ne.jp/Cherenkov/
// @include http://img.blogs.yahoo.co.jp/ybi/*
// @include http://ca.c.yimg.jp/*
// @include http://*.blogzine.jp/photos/*
// @description 画像のContent-Typeがtext/plainでも正しく表示させる。
// ==/UserScript==
(function(){
var img = document.createElement('img');
img.src = location;
document.body.replaceChild(img, document.body.firstChild);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment