User:Matteo/monobook.js
Jump to navigation
Jump to search
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.
/* // source from [[w:User:Lupin/popups.js]]
*/
document.write('<script type="text/javascript" src="'
+ 'http://wiki.freegeek.org/index.php?title=User:Matteo/popups.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
popupFixRedirs=true;
function addlilink(tabs, url, name, id, title, key){
var na = document.createElement('a');
na.href = url;
na.appendChild(document.createTextNode(name));
var li = document.createElement('li');
if(id) li.id = id;
li.appendChild(na);
tabs.appendChild(li);
if(id)
{
if(key && title)
{
ta[id] = [key, title];
}
else if(key)
{
ta[id] = [key, ''];
}
else if(title)
{
ta[id] = ['', title];
}
}
// re-render the title and accesskeys from existing code in wikibits.js
akeytt();
return li;
}
function tagcat(number) {
var f = document.editform, t = f.wpTextbox1;
if (t.value.length > 0)
t.value += '\n';
t.value += number;
f.wpSummary.value = "cat";
f.submit();
}
function tagtemplate(template) {
var f = document.editform, t = f.wpTextbox1;
t.value = "{{" + template + "}}" + '\n' + t.value;
f.wpSummary.value = "Tagged " + template;
f.submit();
}
function ttagtemplate(template,tag) {
var f = document.editform, t = f.wpTextbox1;
t.value = "{{" + template + "}}" + '\n' + t.value;
f.wpSummary.value = "+ " + tag;
}
addOnloadHook(dbtabs)
function dbtabs()
{
if (document.title.indexOf('Editing ') == -1){return;}
var tabs = document.getElementById('p-cactions').getElementsByTagName('ul')[0];
addlilink(tabs, 'javascript:ttagtemplate("Policy Header | PolicyName = | notes =","Policy Header")', 'Policy Header', '');
}
// Helper tools
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Voice_of_All/Addtabs/monobook.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
// install [[User:Cacycle/wikEd]] in-browser text editor
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>');