MyWiki:WikiProject User scripts/Scripts/HistoryCount

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by imported>WOSlinker at 14:58, 7 February 2021 (WOSlinker changed the content model of the page Wikipedia:WikiProject User scripts/Scripts/HistoryCount from "wikitext" to "JavaScript"). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
// <syntaxhighlight lang="javascript">

// HistoryCount
addOnloadHook(function (){
    var N = 250;      // <<== CHANGE TO YOUR LIKING
    var x = document.getElementById('ca-history');
    if(!x) return;
    x.getElementsByTagName('a')[0].href += "&limit=" + N;
});

// </syntaxhighlight>[[Category:Wikipedia scripts]]