<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.tachyony.co.uk/w/index.php?action=history&amp;feed=atom&amp;title=Wikipedia%3ACustomizing_watchlists</id>
	<title>Wikipedia:Customizing watchlists - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.tachyony.co.uk/w/index.php?action=history&amp;feed=atom&amp;title=Wikipedia%3ACustomizing_watchlists"/>
	<link rel="alternate" type="text/html" href="https://wiki.tachyony.co.uk/w/index.php?title=Wikipedia:Customizing_watchlists&amp;action=history"/>
	<updated>2026-05-16T00:29:40Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.5</generator>
	<entry>
		<id>https://wiki.tachyony.co.uk/w/index.php?title=Wikipedia:Customizing_watchlists&amp;diff=1685&amp;oldid=prev</id>
		<title>Tachyony: Imported page</title>
		<link rel="alternate" type="text/html" href="https://wiki.tachyony.co.uk/w/index.php?title=Wikipedia:Customizing_watchlists&amp;diff=1685&amp;oldid=prev"/>
		<updated>2021-12-06T12:27:01Z</updated>

		<summary type="html">&lt;p&gt;Imported page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Wikipedia how to|WP:CUSTOMWATCH|WP:CUSTWATCH}}{{tocright}}&lt;br /&gt;
&lt;br /&gt;
There are a number of ways in which you can &amp;#039;&amp;#039;&amp;#039;customize your [[Help:Watchlist|watchlist]]&amp;#039;&amp;#039;&amp;#039;. This can make [[Help:Watching pages|watching pages]] for changes easier.&lt;br /&gt;
&lt;br /&gt;
== Using the Preferences page ==&lt;br /&gt;
{{details|Help:Watching pages#Options}}&lt;br /&gt;
&lt;br /&gt;
Watchlist customization begins with the options provided by the [[Special:Preferences#mw-prefsection-watchlist|&amp;#039;&amp;#039;Watchlist&amp;#039;&amp;#039;]] tab on the [[Special:Preferences|Preferences]] page. These include &amp;quot;Expand watchlist to...,&amp;quot; which you can select in order to see all changes to a page rather than only the last one (which may have been an automated bot edit, or marked as minor, i.e., something less significant than, for example, the edit just before it&amp;amp;nbsp;– or, depending on other preference settings, may usually be hidden). Another option is &amp;quot;Group changes by page...&amp;quot; on the &amp;quot;Recent changes&amp;quot; tab, which, for example, enables changes to the same page on the same day to be grouped together (useful if you have a large number of frequently changing pages on your watchlist).&lt;br /&gt;
&lt;br /&gt;
[[WP:TWINKLE|Twinkle]] has the option to automatically add articles it&amp;#039;s used on to your watchlist. To change this setting, go to [[Wikipedia:Twinkle/Preferences]]&lt;br /&gt;
&lt;br /&gt;
==Styling of recently updated pages==&lt;br /&gt;
Although it is currently disabled by default, a formatting feature has been made available that highlights changes in your watchlist that you haven&amp;#039;t seen yet.&amp;lt;ref&amp;gt;per [[Bugzilla:33123]] implementing [[:mw:Manual:$wgShowUpdatedMarker|$wgShowUpdatedMarker]]; This was a [[Wikipedia:Village_pump_(proposals)/Archive_83#Enable_.22Show_changes_since_last_visit.22_on_watchlist|December 2011 community request]]. The default formatting applied is controlled by the CSS styling given to &amp;lt;code&amp;gt;.mw-watched&amp;lt;/code&amp;gt; in [[MediaWiki:Common.css]].&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To activate this feature with its default bold styling, enable the following item in your Preferences:&lt;br /&gt;
*{{myprefs|9|Display pages on your watchlist that have changed since your last visit in bold.}}&lt;br /&gt;
&lt;br /&gt;
===Enable manually===&lt;br /&gt;
If you want to enable this feature manually using code, instead of using the gadget described above, add this in [[Special:MyPage/common.css|your common.css page]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.updatedmarker {&lt;br /&gt;
    background-color: transparent;&lt;br /&gt;
    color: #006400;&lt;br /&gt;
}&lt;br /&gt;
.mw-special-Watchlist .mw-changeslist-line-watched .mw-title {&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
.mw-special-Watchlist #mw-watchlist-resetbutton {&lt;br /&gt;
    display: block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Alternative styling===&lt;br /&gt;
[[File:Watchlistcolors-alternative.png|right|350px|thumb|Alternative styling with &amp;#039;&amp;#039;border-bottom:1px dotted #999;&amp;#039;&amp;#039; ]]&lt;br /&gt;
To activate the feature with an alternate style, you can instead add one of the following to [[Special:MyPage/common.css|your common.css page]].&lt;br /&gt;
&lt;br /&gt;
;Use dotted underline&lt;br /&gt;
:black&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;.mw-changeslist-line-watched .mw-title {&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    border-bottom: 1px dotted #000;&lt;br /&gt;
}&lt;br /&gt;
.mw-special-Watchlist #mw-watchlist-resetbutton {&lt;br /&gt;
    display: block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
:or grey&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;.mw-changeslist-line-watched .mw-title {&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    border-bottom: 1px dotted #999;&lt;br /&gt;
}&lt;br /&gt;
.mw-special-Watchlist #mw-watchlist-resetbutton {&lt;br /&gt;
    display: block;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Use italic text&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;.mw-changeslist-line-watched .mw-title {&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    font-style: italic;&lt;br /&gt;
}&lt;br /&gt;
.mw-special-Watchlist #mw-watchlist-resetbutton {&lt;br /&gt;
    display: block;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Annotation with small green stars&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.updatedmarker {&lt;br /&gt;
    background-color: transparent;&lt;br /&gt;
    color: #006400;&lt;br /&gt;
}&lt;br /&gt;
.mw-changeslist-line-watched .mw-title {&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    background: url(//upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Pentagram_dis.svg/13px-Pentagram_dis.svg.png) no-repeat left;&lt;br /&gt;
    /* @noflip */&lt;br /&gt;
    padding-left: 16px;&lt;br /&gt;
}&lt;br /&gt;
.mw-special-Watchlist #mw-watchlist-resetbutton {&lt;br /&gt;
    display: block;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
;Annotation of unwatched edits with green background (like on Wikimedia Commons)&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.updatedmarker {&lt;br /&gt;
    background-color: Lime;&lt;br /&gt;
    color: #006400;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Disabling===&lt;br /&gt;
If the feature is ever enabled site-wide, by default, you may use one of the following methods, which will disable the formatting, the related {{button|{{int:enotif reset}}}} button, and the green update notices on History pages. Only &amp;#039;&amp;#039;&amp;#039;one&amp;#039;&amp;#039;&amp;#039; of the four methods described below is necessary. They all basically do the same thing.&lt;br /&gt;
&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Import CSS styling via Javascript:&amp;#039;&amp;#039;&amp;#039; Add this code to [[Special:MyPage/common.js|your common.js page]]:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
importStylesheet(&amp;#039;User:Equazcion/RemoveRecentUpdateMarkers.css&amp;#039;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Import CSS styling via CSS:&amp;#039;&amp;#039;&amp;#039; Add this code to [[Special:MyPage/common.css|your common.css page]]:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
@import url(&amp;#039;//en.wikipedia.org/wiki/User:Equazcion/RemoveRecentUpdateMarkers.css?action=raw&amp;amp;ctype=text/css&amp;#039;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Use Javascript:&amp;#039;&amp;#039;&amp;#039; Add this code to [[Special:MyPage/common.js|your common.js page]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
importScript(&amp;#039;User:Equazcion/RemoveMarkAll.js&amp;#039;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Manually insert CSS code:&amp;#039;&amp;#039;&amp;#039; Add this code to [[Special:MyPage/common.css|your common.css page]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.mw-changeslist-line-watched .mw-title {&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
}&lt;br /&gt;
#mw-watchlist-resetbutton,&lt;br /&gt;
.updatedmarker {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Highlight specific pages==&lt;br /&gt;
As an alternative or in addition to using the watchlist feature, you can also define a [[Help:User style|user style]] for links to selected pages. In [[Special:MyPage/common.css|your common.css page]] put a list of lines like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;CSS&amp;quot;&amp;gt;a[title=&amp;quot;pagename&amp;quot;] {&lt;br /&gt;
    color: white;&lt;br /&gt;
    background: red;&lt;br /&gt;
    font-size: 150%;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This may not work in all browsers, however.&lt;br /&gt;
&lt;br /&gt;
On the (Enhanced) Recent Changes page it works like the bolding feature mentioned above, but it is more versatile, e.g. allowing extra emphasis on pages one is &amp;#039;&amp;#039;very&amp;#039;&amp;#039; interested in, or different styles for different categories of interesting pages. Furthermore, it also works on user contributions pages, and on regular pages (also for piped links, but not for indirect links through a redirect). It also applies, less usefully, for the section editing links in the page itself.&lt;br /&gt;
&lt;br /&gt;
To highlight links to the given page also from other websites, including interlanguage links, use instead of the above:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;CSS&amp;quot;&amp;gt;a[href=&amp;quot;full URL&amp;quot;] {&lt;br /&gt;
    ...&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that the full URL is needed, even to highlight links from the same project, even though the [[Help:HTML in wikitext|HTML]] code uses the relative URL /wiki/&amp;#039;&amp;#039;pagename&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
==Removing or modifying log entries==&lt;br /&gt;
Add to [[Special:MyPage/common.css|your common.css page]] the lines you want to &amp;#039;&amp;#039;remove&amp;#039;&amp;#039; from the [[Help:Log|log entries]]; for modifying the appearance the &amp;#039;&amp;#039;display:none;&amp;#039;&amp;#039; has to be replaced with a relevant CSS code (like from the &amp;quot;modified notification&amp;quot;-section above):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
/* For all */&lt;br /&gt;
.mw-special-Watchlist table[class*=&amp;quot;mw-changeslist-log&amp;quot;] {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* For deletion entries */&lt;br /&gt;
.mw-special-Watchlist table[class*=&amp;quot;mw-changeslist-log-del&amp;quot;] {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* For the user creation log */&lt;br /&gt;
.mw-special-Watchlist table[class*=&amp;quot;mw-changeslist-log-newuser&amp;quot;] {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* For the move log */&lt;br /&gt;
.mw-special-Watchlist table[class*=&amp;quot;mw-changeslist-log-move&amp;quot;] {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== {{anchor|rollback}}Remove or modify the [rollback] link ==&lt;br /&gt;
&lt;br /&gt;
=== CSS method ===&lt;br /&gt;
Add to [[Special:MyPage/common.css|your common.css page]] the following line to remove the &amp;lt;code&amp;gt;[rollback]&amp;lt;/code&amp;gt; link shown after every line:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.mw-special-Watchlist .mw-rollback-link {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or to remove &amp;#039;&amp;#039;all&amp;#039;&amp;#039; rollback links, including from history pages:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
.mw-rollback-link {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== User scripts ===&lt;br /&gt;
The following user scripts allow for more flexibility than the CSS method:&lt;br /&gt;
* [[User:Mr. Stradivarius/gadgets/ConfirmRollback]] - highly configurable rollback confirmation/hiding script; adjust rollback link behaviour by page and device type&lt;br /&gt;
* [[User:MusikAnimal/confirmationRollback]] - scripts to add rollback confirmation dialogs, available in mobile and desktop versions&lt;br /&gt;
* [[User:Zvn/confirmwatchlistrollback.js]] - simple rollback confirmation script&lt;br /&gt;
&lt;br /&gt;
=== JavaScript (jquery) method ===&lt;br /&gt;
You can also use custom JavaScript to alter the links. For example, to completely remove them from your page, add the following to [[Special:MyPage/common.js|your common.js page]]:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
    $(&amp;#039;span.mw-rollback-link&amp;#039;).remove();&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to make sure it only removes the links from certain pages, you can wrap it in a conditional statement:&lt;br /&gt;
Start the conditional check with &amp;lt;code&amp;gt;if (&amp;lt;/code&amp;gt; and end it with &amp;lt;code&amp;gt;){&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Then select the pages you want it removed from out of the list below separating each with a conditional or &amp;lt;code&amp;gt; || &amp;lt;/code&amp;gt;&lt;br /&gt;
* mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; ) === &amp;#039;Watchlist&amp;#039;&lt;br /&gt;
* mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; ) === &amp;#039;Recentchanges&amp;#039;&lt;br /&gt;
* mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; ) === &amp;#039;Contributions&amp;#039;&lt;br /&gt;
Next, the above &amp;lt;code&amp;gt;$(&amp;#039;span.mw-rollback-link&amp;#039;).remove();&amp;lt;/code&amp;gt; goes in and &amp;#039;&amp;#039;&amp;#039;make SURE&amp;#039;&amp;#039;&amp;#039; that you close the conditional statement with &amp;lt;code&amp;gt;}&amp;lt;/code&amp;gt; at the end!!!&lt;br /&gt;
: An example that would remove it from Watchlist and Recentchanges but leave it on Contributions would look like:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br /&gt;
if(mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; ) === &amp;#039;Watchlist&amp;#039; || mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; ) === &amp;#039;Recentchanges&amp;#039;){&lt;br /&gt;
    $(&amp;#039;span.mw-rollback-link&amp;#039;).remove();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Remove &amp;quot; | block&amp;quot; links ==&lt;br /&gt;
Administrators can completely remove block links from their page by adding the following to [[Special:MyPage/common.js|your common.js page]]:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
    $(&amp;#039;span.mw-usertoollinks&amp;#039;).each(function () {&lt;br /&gt;
        var $elem = $(this);&lt;br /&gt;
        $elem.children(&amp;#039;a:last&amp;#039;).replaceWith(&amp;quot;-&amp;quot;);&lt;br /&gt;
        $elem.html($elem.html().replace(&amp;quot; | -&amp;quot;, &amp;quot;&amp;quot;));&lt;br /&gt;
    });&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to make sure it only removes the links from certain pages, you can wrap it in a conditional statement:&amp;lt;br /&amp;gt;&lt;br /&gt;
Start the conditional check with &amp;lt;code&amp;gt;if (&amp;lt;/code&amp;gt; and end it with &amp;lt;code&amp;gt;){&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Then select the pages you want it removed from out of the list below separating each with a conditional or &amp;lt;code&amp;gt; || &amp;lt;/code&amp;gt;&lt;br /&gt;
* mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; ) === &amp;#039;Watchlist&amp;#039;&lt;br /&gt;
* mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; ) === &amp;#039;Recentchanges&amp;#039;&lt;br /&gt;
* mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; ) === &amp;#039;Contributions&amp;#039;&lt;br /&gt;
&amp;lt;small&amp;gt;If using more than one of these, you can shorthand it as in the example below&amp;lt;/small&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Next, the above code goes in and &amp;#039;&amp;#039;&amp;#039;make SURE&amp;#039;&amp;#039;&amp;#039; that you close the conditional statement with &amp;lt;code&amp;gt;}&amp;lt;/code&amp;gt; at the end!!!&lt;br /&gt;
: An example that would remove it from all three pages could look like:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br /&gt;
var wgCSPN = mw.config.get( &amp;#039;wgCanonicalSpecialPageName&amp;#039; );&lt;br /&gt;
if(wgCSPN === &amp;#039;Watchlist&amp;#039; || wgCSPN === &amp;#039;Recentchanges&amp;#039; || wgCSPN === &amp;#039;Contributions&amp;#039;){&lt;br /&gt;
    $(&amp;#039;span.mw-usertoollinks&amp;#039;).each(function () {&lt;br /&gt;
        var $elem = $(this);&lt;br /&gt;
        $elem.children(&amp;#039;a:last&amp;#039;).replaceWith(&amp;quot;-&amp;quot;);&lt;br /&gt;
        $elem.html($elem.html().replace(&amp;quot; | -&amp;quot;, &amp;quot;&amp;quot;));&lt;br /&gt;
    });&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hide pages in your watchlist==&lt;br /&gt;
{{Main|Wikipedia:Hide Pages in Watchlist}}&lt;br /&gt;
&lt;br /&gt;
It is possible to hide pages in your watchlist using [[CSS]], via [[Special:MyPage/common.css|your common.css page]]. This makes it possible, for example, to watch a page without the associated talk page appearing in your watchlist. See [[Wikipedia:Hide Pages in Watchlist]] for instructions.&lt;br /&gt;
&lt;br /&gt;
==Scripts==&lt;br /&gt;
{{main|Wikipedia:User_scripts/List#Watchlist{{!}}Watchlist User Scripts}}&lt;br /&gt;
There are many user scripts written in JavaScript available for greater customization of Watchlists, for example:&lt;br /&gt;
*[[User:UncleDouggie/smart watchlist.js|Smart Watchlist]] - A script that offers several watchlist customization options.&lt;br /&gt;
*[[User:Js/watchlist]] - adding unwatching links to the watchlist; different sorting, expand/collapse all hidden edit (if using &amp;quot;Enhanced Recent Changes&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
{{Wikipedia technical help|collapsed}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Wikipedia how-to|{{PAGENAME}}]]&lt;br /&gt;
[[Category:Wikipedia watchlist]]&lt;/div&gt;</summary>
		<author><name>Tachyony</name></author>
	</entry>
</feed>