Skip to content

Instantly share code, notes, and snippets.

@castaneai
Created November 27, 2012 13:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save castaneai/4154320 to your computer and use it in GitHub Desktop.
Save castaneai/4154320 to your computer and use it in GitHub Desktop.
kashi-time歌詞取得
javascript: (function() {
if (!location.href.match(/^http:\/\/www\.kasi-time\.com\/item-([0-9]+)\.html/)) {
return false;
}
if (typeof jQuery == 'undefined') {
var d = document;
var e = d.createElement('script');
e.type = 'text/javascript';
e.onload = bml;
e.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js';
d.body.appendChild(e)
} else {
bml()
};
function bml() {
jQuery('body').removeAttr('oncontextmenu').removeAttr('onselectstart');
jQuery('.mainkashi').removeAttr('style');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment