otsune (owner)

Revisions

  • 5bbb8b Masafum... Sun Nov 08 04:45:24 -0800 2009
  • 714349 otsune Sun Nov 08 04:33:28 -0800 2009
gist: 229247 Download_button fork
public
Public Clone URL: git://gist.github.com/229247.git
Embed All Files: show embed
useperljournal_addtitle.user.js #
1
2
3
4
5
6
7
8
9
10
11
12
// ==UserScript==
// @name use Perl Journal: Add title with journal title
// @namespace http://www.otsune.com/
// @include http://use.perl.org/~*/journal/*
// @require http://gist.github.com/3242.txt
// ==/UserScript==
 
(function() {
  var journaltitle = $X('id("journalslashdot")/div[@class="title"]/h3')[0].textContent;
    document.title = journaltitle + ' - ' + document.title;
})();