Do you have questions about the Slow Burn webisodes? Submit them here!

User:Hardvice/imdbfullcast.js

From Heroes Wiki

Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes. Mozilla / Firefox / Safari: hold down Shift while clicking Reload, or press Ctrl-Shift-R (Cmd-Shift-R on Apple Mac); IE: hold Ctrl while clicking Refresh, or press Ctrl-F5; Konqueror:: simply click the Reload button, or press F5; Opera users may need to completely clear their cache in Tools→Preferences.

// ==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';
}
Personal tools
Heroes Merchandise