Wikipedia:Tools/Navigation shortcuts
Navigation shortcuts offer the ability to add personal links to the sidebar, providing quick and easy access to favourite articles within Wikipedia.
Quick installation: add {{subst:navshortcuts}}
to your monobook.js (or equivalent file if you use a different skin). See installation section below for full installation instructions and configuration section for instructions on adding sidebar links.
Features
- Add one or more personal sidebars with links below the Wikipedia logo.
- Sidebar is the Wikipedia's menu on the left (by default), beneath the Wikipedia logo.
- Note: Navigation shortcuts does not remove any portlets and/or links from the default Wikipedia sidebar. Use monobook.css to do that.
Requirements
- User account on the Wikipedia.
- Enabled and working javascripts in your browser.
Installation
- You must have a user account in order to install and use the Navigation shortcuts. If you do not have an account you will need to create one and log in.
- Add
{{subst:navshortcuts}}
to your own monobook.js. Note that if you are using other skin than the default one, you will need to use another page instead of the monobook.js:- Classic skin: standard.js
- Cologne Blue: cologneblue.js
- Chick: chick.js
- Simple: simple.js
- Nostalgia: nostalgia.js
- MySkin: myskin.js
- Clear your browser's cache. See your monobook.js to learn how to do that.
Configuration
Navigation shortcuts automatically add a new sidebar portlet (menu with links) named the same as your login is. To add links to the portlet, edit code on your monobook.js (or equivalent file if you use a different skin).
Links
For each link add one line containing
shortcutsAddLink ( 'name', 'article' );
where
- name is the displayed name in the link,
- article is the article name that the link points to.
Add the lines in the same order in which you want the links to appear in the sidebar between the braces ( {
and }
) in the following code:
function shortcutsInit () { shortcutsAddLink ('Navigation shortcuts', 'Wikipedia:Tools/Navigation shortcuts'); }
More portlets
If you want to add more sidebar portlets, use
shortcutsStartSection ( 'name' );
to start each one. In result the code should look like this:
function shortcutsInit () { shortcutsAddLink ( 'Navigation shortcuts', 'Wikipedia:Tools/Navigation shortcuts' ); shortcutsStartSection ('wikify'); shortcutsAddLink ( 'Wikify', 'WP:WWF' ); shortcutsAddLink ( 'Guide to layout', 'WP:GTL' ); shortcutsAddLink ( 'Manual of Style', 'WP:MOS' ); }
Troubles
Keep in mind that all configuration must be done within the function shortcutsInit () { ... }
. If the shortcuts are not working, check, whether you did not accidentally modified these lines:
function shortcutsInit () {
}
Also double-check, that all the configuration is placed between those lines.
Feedback
- Report bugs and problems on the Talk:Talk page.
- Request features and post suggestions on the Talk:Talk page.
Development version
This tool remains under development. The very latest version is available at User:Jsimlo/shortcuts-dev.js and it may see new features before the stable version. Be warned that it may break from time to time. If you do want to install it, type {{subst:js|User:Jsimlo/shortcuts-dev.js}}
into your monobook.js (or equivalent file if you use a different skin). Do not forget to delete your current installation of Navigation shortcuts as they may interfere with each other, resulting in duplicated links.
Uninstall
- To uninstall Navigation shortcuts, delete all lines refering to User:Jsimlo/shortcuts.js from your monobook.js (or equivalent file if you use a different skin). Also remove all configuration from the rest of the file.
- Clear your browser's cache. See your monobook.js to learn how to to that.