Created
January 2, 2012 13:07
-
-
Save Seacolor/1550621 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== | |
// @name melonbooks sp page title optimizer | |
// @description book title to page title. | |
// @namespace http://seacolorswind.sakura.ne.jp/ | |
// @match http://shop.melonbooks.co.jp/shop/sp_*.php* | |
// ==/UserScript== | |
var heading = document.evaluate( | |
'/html/body/table/tbody/tr/td[@class="main"]/table/tbody/tr/td/div/b', | |
document, null, | |
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); | |
document.title = document.title.replace("めろんぶっくすのほ~むぺ~ぢ -コミック・同人誌・PCゲームなど萌えいっぱいの総合書店メロンブックス!!-", heading.snapshotItem(0).firstChild.nodeValue); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment