コンテンツにスキップ

英文维基 | 中文维基 | 日文维基 | 草榴社区

利用者:Mait/common.js

お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。

多くの WindowsLinux のブラウザ

  • Ctrl を押しながら F5 を押す。

Mac における Safari

  • Shift を押しながら、更新ボタン をクリックする。

Mac における ChromeFirefox

  • Cmd Shift を押しながら R を押す。

詳細についてはWikipedia:キャッシュを消すをご覧ください。

function include(s) {
  document.write('<script type="text/javascript" src="' +
                 'http://ja-two.iwiki.icu/w/index.php?title=' +
                 encodeURI(s) + '&amp;action=raw&amp;ctype=text/javascript' +
                 '&amp;dontcountme=s"><' + '/script>');
}

include("User:Suisui/jastyle.js");
include("User:Tietew/log.js");
include("User:Tietew/blinktalk.js");
include("User:Cpro/checksigniture.js");
include("User:Cpro/popups-strings-ja.js");

// [[en:User:Lupin/popups.js]]

document.write('<script type="text/javascript" src="' 
             + 'http://en-two.iwiki.icu/w/index.php?title=User:Lupin/popups.js' 
             + '&amp;action=raw&amp;ctype=text/javascript&amp;dontcountme=s"></script>');

popupDelay=0.1;
popupHideDelay=0.1;
popupActionsMenu=true;
popupImages=false;
popupFixRedirs=true;
popupRedlinkRemoval=true;
popupFixDabs=true;
popupPreviewFirstParOnly=false;

function createLink(href, text) {
  var newLink = document.createElement('a');
  newLink.href = href;
  newLink.appendChild(document.createTextNode(text));
  return newLink;
}

//表示中のページ名で始まる記事の一覧を表示
function addPrefixindexTool() {
  var refTool = document.getElementById('t-whatlinkshere'); //whatlinkshereのリンクを流用
  if(!refTool) return;
 
  var newTool = document.createElement('li');
  newTool.id = 't-prefixindex';
  var newUri = refTool.childNodes[0].href.replace('WhatLinksHere', 'PrefixIndex');
  newUri = newUri.replace(encodeURIComponent('リンク元'), encodeURIComponent('始点指定ページ一覧'));
  newTool.appendChild(createLink(newUri, 'PrefixIndex'));
  refTool.parentNode.insertBefore(newTool, refTool.nextSibling);
}

$(addPrefixindexTool);