User:SuperHamster/imagelicensorgamescreenshot.js

From Nookipedia, the Animal Crossing wiki

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
//This script enables users to easily tag images with the following license: "Template:Game screenshot".
//Once installed, a button labelled "Game Screenshot" will appear at the top of the page to the left of your username.
//Clicking the button will immediately and automatically edit the page. Be careful!
//EVERYTHING will be replaced with a header labeled "Licensing", the Game Screenshot license, and its relevant category.
//
//This script is a derivative of a work from the English Wikipedia (CC-BY-SA 3.0). Its authors on Wikipedia are:
///Misza13 originally created this script.
///Voyagerfan5761 performed some minor improvements.
///Xenocidic updated the script to use /Status as a one word indicator.
//This version has been edited by SuperHamster to suit his needs.

addOnloadHook(function (){
  statusChangerConfig = {}
  statusChangerConfig.statusList = [ 'Game Screenshot' ];
  statusChangerConfig.statusPage = wgPageName;
 
  //Add the links
  for (var i=0; i<statusChangerConfig.statusList.length; i++) {
    var stat = statusChangerConfig.statusList[i];
    addPortletLink(
      "p-personal", //target tab - personal links
      wgServer + wgScript + "?title=" + statusChangerConfig.statusPage + "&action=edit&newstatus=" + stat, //link URL
      stat, //link text
      "pt-status-" + stat, //id of new button
      "License " + "as " + stat, //hover text
      "", //???
      document.getElementById("pt-userpage")); //add before logout button
  }
 
  if (location.href.indexOf("&action=edit&newstatus=") == -1) return; //Are we here to auto-edit the status?
  //Get new status
  statusRegExp = /&action=edit&newstatus=(.*)/;
  var status = statusRegExp.exec(location.href)[1];
  //Modify the form
  document.getElementById('wpTextbox1').value = "{{sub" + "st:User:SuperHamster/FullGameScreenshotSection}}";
  document.getElementById('wpSummary').value = "Adding" + " licensing " + "information" + " (" + stat + ")";
  document.getElementById('wpMinoredit').checked = false;
  //Submit it!
  document.getElementById('editform').submit();
});