குறிப்பு - சேமித்த பின்னர், நீங்கள் செய்த மாற்றங்களைக் காண்பதற்கு உங்கள் உலவியின் இடைமாற்று அகற்றப்பட வேண்டும்.

  • மொஸில்லா பயர்பாக்ஸ் / சபாரி: Shift+Reload, அல்லது Ctrl-F5 அல்லது Ctrl-R (⌘-R Mac ல்)
  • கூகிள் குரோம் Ctrl-Shift-R அழுத்தவும். (⌘-Shift-R Mac ல்) ;
  • இண்டர்நெட் எக்ஸ்ப்ளோரர்: Ctrl-Refresh அல்லது Ctrl-F5 ஐ அழுத்தவும்.
  • ஒபேரா: Tools → Preferences இல் இடைமாற்றை அகற்றவும்;
/* <pre><nowiki> */

$(StatusChange);

/*** Status changer ***/
function StatusChange() {
  var user = document.getElementById( 'pt-userpage' ).firstChild.firstChild.data;
  var subpage = "/Status";
  var scheme = "/StatusTemplate";
  var table = "/StatusTable";
  var linkprefix = "http://en.wikipedia.org/w/index.php?title=User:";
  var contribs = document.getElementById( 'pt-mycontris' );
  //Add the links
  addlilink(contribs, linkprefix+user+subpage+"&action=purge", "( S", "pt-status-s", "Status", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=in", "I", "pt-status-in", "In", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=busy", "B", "pt-status-busy", "Busy", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=around", "A", "pt-status-around", "Around", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=out", "O )", "pt-status-out", "Out", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=new", "( N", "pt-status-new", "New", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=email", "E", "pt-status-email", "Email", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=check", "C", "pt-status-check", "Checking", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=hide", "H )", "pt-status-hide", "Hiding", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=commons", "( C", "pt-status-commons", "Commons", "");
  addlilink(contribs, linkprefix+user+subpage+"&action=edit&newstatus=meta", "M )", "pt-status-meta", "Meta", "");
  if (location.href.indexOf("User:"+user+subpage+"&action=edit&newstatus=") == -1) return; //Are we here to auto-edit the status?
  //Get new status
  status = location.href.split("=");
  status = status[status.length-1];
  //Modify the form
  document.getElementById('wpTextbox1').value = "{{User:"+user+scheme+"|"+status+"}}";
  document.getElementById('wpSummary').value = "Status: "+status;
  document.getElementById('wpMinoredit').checked = 'checked';
  //Submit it!
  document.getElementById('editform').submit();
}

/* </nowiki></pre> */
"https://ta.wikipedia.org/w/index.php?title=பயனர்:Ravidreams/statuschanger.js&oldid=3103193" இலிருந்து மீள்விக்கப்பட்டது