Forked from youpy/gist_replace_title_with_filename.user.js
Created
May 26, 2012 15:39
-
-
Save Neil-Smithline/2794345 to your computer and use it in GitHub Desktop.
Replace Titlename With Filename
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 gist: replace title with filename | |
// @namespace http://d.hatena.ne.jp/youpy/ | |
// @include http://gist.github.com/* | |
// @include https://gist.github.com/* | |
// @exclude http://gist.github.com/gists | |
// @exclude https://gist.github.com/gists | |
// @require https://raw.github.com/gist/3242/ | |
// ==/UserScript== | |
(function() { | |
var username = $X('id("owner")//a')[0].textContent; | |
var filenames = $X('(//a|//span)[parent::div[@class="info"]]').map( | |
function(span) { | |
return span.textContent.replace(/ #$/,''); | |
} | |
); | |
if(filenames.length) { | |
document.title = document.title. | |
replace(/^(gist: \d+)/, | |
'$1 (' + filenames.join(', ') + ') by ' + username); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Corrects error in gist so that it works. Seems Github changed the URLs of raw gists so the @require failed. Seems to work now.