Skip to content

Instantly share code, notes, and snippets.

@Seacolor
Created January 2, 2012 13:07
Show Gist options
  • Save Seacolor/1550621 to your computer and use it in GitHub Desktop.
Save Seacolor/1550621 to your computer and use it in GitHub Desktop.
メロンブックス通信販売における商品特集のページタイトルを商品名に
// ==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