Thành viên:Mnts/monobook.js
Giao diện
Chú ý: Sau khi lưu thay đổi trang, bạn phải xóa bộ nhớ đệm của trình duyệt để nhìn thấy các thay đổi. Google Chrome, Firefox, Internet Explorer và Safari: Giữ phím ⇧ Shift và nhấn nút Reload/Tải lại trên thanh công cụ của trình duyệt. Để biết chi tiết và hướng dẫn cho các trình duyệt khác, xem Trợ giúp:Xóa bộ nhớ đệm.
// "Kate counter" es un link para tu monobook "personal menu" que premite ver el conteo de tus contibuciones // Add a "Kate counter" link to your monobook "personal menu" list at the very // top of the page. // // Indica donde deseas que el "Kate counter" aparesca: // pt-userpage, pt-mytalk, pt-preferences, // pt-watchlist, pt-mycontris, pt-logout //gsKateInsertBefore = 'pt-mycontris'; // leave blank to append after "logout" //function KateLink(){ var user = document.getElementById( 'pt-userpage').firstChild.firstChild.data; var li = document.createElement( 'li' ); li.id = 'pt-kate'; var a = document.createElement( 'a' ); a.appendChild( document.createTextNode( 'Conteo de contribuciones' ) ); // eh, the css makes the text lowercase a.href = 'http://tools.wikimedia.de/~kate/cgi-bin/count_edits?dbname=viwiki_p&user=' + user; li.appendChild( a ); if ( ! gsKateInsertBefore ) // append to end (right) of list { document.getElementById( 'pt-logout' ).parentNode.appendChild( li ); } else { var before = document.getElementById( gsKateInsertBefore ); before.appendChild( li, before ); }} if ( window.addEventListener ) window.addEventListener( 'load', KateLink, false );else if ( window.attachEvent ) window.attachEvent ( 'onload', KateLink );