This wiki is a XML full dump clone of "Heroes Wiki", the main wiki about the Heroes saga that has been shut down permanently since June 1, 2020. The purpose of this wiki is to keep online an exhaustive and accurate database about the franchise.
User:Hardvice/imdbfullcast.js: Difference between revisions
Jump to navigation
Jump to search
imported>Hardvice New page: // ==UserScript== // @name IMDb fullcast // @namespace imdb.com // @description Rewrites IMDb title links to point to full cast articles. // @include http://imdb.c... |
imported>Hardvice New page: // ==UserScript== // @name IMDb fullcast // @namespace imdb.com // @description Rewrites IMDb title links to point to full cast articles. // @include http://imdb.c... |
(No difference)
|
Latest revision as of 00:41, 9 October 2007
// ==UserScript== // @name IMDb fullcast // @namespace imdb.com // @description Rewrites IMDb title links to point to full cast articles. // @include http://imdb.com/* // @include http://*.imdb.com/* // ==/UserScript== var titles = document.evaluate( '//a[contains(@href, "/title/")]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (var i = 0; i < titles.snapshotLength; i++) { titles.snapshotItem(i).href += 'fullcredits#cast'; }