Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// To add interwiki link to home wiki for any article link in any wiki using Wikidata
// example query: https://www.wikidata.org/w/api.php?action=wbgetentities&titles=Count_von_Count|Socrates|List_of_gay,_lesbian_or_bisexual_people&sites=enwiki&props=sitelinks|labels&sitefilter=ruwiki|ruwikisource|commonswiki|enwiki&languages=ru&ungroupedlist=yes&format=jsonfm
// Redirects and namespaces must be handled somehow by wiki itself.
if(typeof Ignatus != 'object')Ignatus = {'iwfiller':{'home':'ru'}};else{
	if(typeof Ignatus.iwfiller != 'object')Ignatus.iwfiller = {'home':'ru'};
}

var pagetext=document.getElementById("mw-content-text");

if(pagetext && /\.wikipedia.org/.test(wgServer) && (wgContentLanguage != Ignatus.iwfiller.home)){
	var as = pagetext.getElemementsByTagName('A');
	var titles='', tc=0; // only 50 titles per query are allowed
	for(var i=0;i<as.count;i++){
		
	}
}