Wikipedia Inline Footnotes

Shows footnotes inline when clicked.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name        Wikipedia Inline Footnotes
// @version     1.2
// @namespace   http://github.com/johan
// @description Shows footnotes inline when clicked.
// @include     http://*.wikipedia.org/wiki/*
// ==/UserScript==

$x('//a[contains(@href,"#cite_note-")]').forEach(function(a) {
  a.addEventListener('click', inline_footnote, false);
});

function inline_footnote(e) {
  var a = $X('ancestor-or-self::a[1]', e.target);
  var id = a.hash.slice(1);
  var tag = document.createElement('span');
  var copy = document.getElementById(id).cloneNode(true);
  var sup = $X('ancestor::sup[1]', a);

  $x('a[sup] | *[.="^"]', copy).forEach(remove);
  tag.innerHTML = " ["+ copy.innerHTML.replace(/^[\s^]*/, '') +"]";

  a.parentNode.replaceChild(tag, a);
  if (sup) {
    sup.parentNode.replaceChild(tag, sup);
    tag.className = 'citation';
    tag.id = sup.id;
  }

  e.preventDefault();
  e.stopPropagation();
}

function remove(node) {
  node.parentNode.removeChild(node);
}

function $x( xpath, root ) {
  var doc = root ? root.evaluate ? root : root.ownerDocument : document;
  var got = doc.evaluate( xpath, root||doc, null, 0, null ), next, result = [];
  switch (got.resultType) {
    case got.STRING_TYPE:
      return got.stringValue;
    case got.NUMBER_TYPE:
      return got.numberValue;
    case got.BOOLEAN_TYPE:
      return got.booleanValue;
    default:
      while ((next = got.iterateNext()))
	result.push( next );
      return result;
  }
}