Jump to content

User:Script7921/sandbox/editcount.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Script7921 (talk | contribs) at 16:30, 18 December 2024 (added script). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
mw.loader.using(['mediawiki.api'], function() {
    var username = 'YourUsername'; // Replace with the desired username

    var api = new mw.Api();
    api.get({
        action: 'query',
        prop: 'revisions',
        rvprop: 'ids',
        rvlimit: '500',
        rvuser: username
    }).done(function(data) {
        var editCount = data.query.pages;
        for (var pageId in editCount) {
            var revisions = editCount[pageId].revisions;
            editCount = revisions.length;
        }
        $('.YourUserboxClass').text('Current edit count for ' + username + ': ' + editCount);
    });
});