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.
//See [[User:Drilnoth/quickstub.js/doc]] for details.

//Create the "doQuickStub" function
function doQuickStub() {
  document.editform.wpTextbox1.value = document.editform.wpTextbox1.value + '\n' + '{' + '{' + 'stub' + '}' + '}';
}

//Implement the "doQuickStub" function on appropriate pages
$(function() {
  if (mw.config.get('wgNamespaceNumber') == "0")
  if (document.editform) {
     mw.util.addPortletLink("p-cactions", "javascript:doQuickStub()", "stub", "ca-stub", "Tag as a stub", "");
  }
});