User:Bgoldenberg/monobook.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .css page for this skin is at User:Bgoldenberg/monobook.css. |
/** For bottom tabs */
function morelinks() {
var tabs = document.getElementById('p-cactions').cloneNode(true);
tabs.id = 'mytabs';
var listitems = tabs.getElementsByTagName('LI');
for (i=0;i<listitems.length;i++) {
if(listitems[i].id) listitems[i].id = 'mytabs-' + listitems[i].id;
}
document.getElementById('column-content').appendChild(tabs);
}
if (window.addEventListener) window.addEventListener("load",morelinks,false);
else if (window.attachEvent) window.attachEvent("onload",morelinks);
// Live Preview customization,
// edit this to your own liking.
wpUserName = 'Pilaf'; // User name to display in signatures
wpShowImages = true; // Enable downloading and displaying of images
// Include Live Preview...
document.write('<script type="text/javascript" src="/w/index.php?title=User:Pilaf/livepreview.js&action=raw&ctype=text/javascript&dontcountme=s"></script>');
// Now set everything up
window.onload = Main;
function Main()
{
LivePreviewInstall();
// You may include here other "extensions"
}
/* This is to keep track of who is using the Live Preview: [[User:Pilaf/livepreview.js]] */
// This code will change ISBN links to point to the url of your choice,
// instead of Special:Booksources.
//
// How to use it:
//
// First, you must copy this code to your user javascript page. This is
// at User:<your username>/monobook.js . My username is Lunchboxhero so
// my javascript page is User:Lunchboxhero/monobook.js . You must be logged
// in to edit your javascript page.
//
// Once you have copied the code and saved the page, you need to refresh your
// browser's cache. For Mozilla/Safari/Konqueror: hold down Shift while clicking
// Reload (or press Ctrl-Shift-R), IE: press Ctrl-F5, Opera: press F5.
//
// The code should now work, as long as you are logged in.
//
// You can change the destination URL. Go to [[Wikipedia:Book sources]] and copy
// the URL of the site you want to use (right-click the link, then click "Copy Link
// Location", "Copy Target", or similar). Put the new URL between the quotes next
// to magicURL, in place of the URL now there.
//
// The current magicURL includes Wikimedia's Amazon Referral reference. That means if you click on
// the ISBN link, go to Amazon and end up buying the book, Wikimedia will earn some small amount
// of money from that sale. If you don't want to support Wikimedia in this way, but do want ISBNs
// to link to Amazon, replace the current magicURL with "http://www.amazon.com/gp/search?ie=UTF8&field-isbn=MAGICNUMBER"
//
// Good luck, and if you have any questions, leave a comment on the discussion
// page of User:Lunchboxhero/monobook.js . Thanks to Superm401 and drrngravy for their
// improvements.
//
// (Every line that starts with "//" is a comment and can be discarded.)
var magicURL = "http://www.amazon.com/gp/search?ie=UTF8&field-isbn=MAGICNUMBER&tag=wikipedia08-20";
importScript('User:Lunchboxhero/externISBN.js');