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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* This script adds a "Page Curation" link to the top toolbar that points to Special:NewPagesFeed.
   It is primarily designed to assist new page reviewers. Page Curation is a feature-rich purpose-built
   system to review new pages. Be sure to have read and fully understood the instructions at New Pages Patrol.
   To use the script, add the following line to Special:MyPage/common.js:
 
importScript('User:Anjuman/PageCuration.js'); // Linkback: [[User:Anjuman/PageCuration.js]]

*/
 
$.when( mw.loader.using( ['mediawiki.util'] ), $.ready ).done( function() {
  mw.util.addPortletLink(
    'p-personal',
    mw.util.getUrl('Special:NewPagesFeed'),
    'Page Curation',
    'pt-pagecuration',
    'View the new pages feed',
    null,
    '#pt-preferences'
  );
});