Created
May 2, 2011 09:18
-
-
Save ohnishiakira/951344 to your computer and use it in GitHub Desktop.
はてなブックマークのタイトルを全文表示する
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== | |
// @match http://b.hatena.ne.jp/* | |
// ==/UserScript== | |
var title = [ | |
document.querySelectorAll(".entry-link"), | |
document.querySelectorAll(".asin-sim-title") | |
]; | |
for (var i = 0, k = title.length; i < k; i++) { | |
for (var j = 0, l = title[i].length; j < l; j++) { | |
if (title[i][j]["title"] !== "") { | |
title[i][j].innerText = title[i][j]["title"]; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment