Wikipedia:User scripts/Requests/Archive 3: Difference between revisions

Content deleted Content added
Line 405:
:Excellent, {{u|Evad37}}, thank you (''if only there was a thank link here…'' =D) [[User:Guarapiranga|Guarapiranga]] ([[User talk:Guarapiranga|talk]]) 06:39, 23 November 2019 (UTC)
::{{u|Evad37}}, you are a legend, thank you so much, it works perfectly well even with grouping enabled! (the thanks I just sent you was done from there) {{=D}} --[[User:Signimu|Signimu]] ([[User talk:Signimu|talk]]) 10:46, 23 November 2019 (UTC)
 
== Merge refs ==
Is there a script that detects duplicate refs and allows users to try merging them? If there's not, I hope one is made. --<span style="white-space:nowrap;font-family: Papyrus">[[User:Kailash29792|<b style="color: black;">Kailash29792</b>]] [[User talk:Kailash29792|<span style="color: black;">(talk)</span>]] </span> 05:04, 1 January 2019 (UTC)
:{{reply to|Kailash29792}} [[WP:REFILL]] does this if refs are ''identical''. See, eg, [https://en.wikipedia.org/w/index.php?title=2016%E2%80%9317_V-League_(South_Korea)&diff=prev&oldid=876208465&diffmode=source a] [https://en.wikipedia.org/w/index.php?title=The_Prince%27s_Countryside_Fund&diff=prev&oldid=875964682&diffmode=source b] [https://en.wikipedia.org/w/index.php?title=G.S._Agioi_Anargyroi_F.C&diff=prev&oldid=875964642&diffmode=source c] [https://en.wikipedia.org/w/index.php?title=2016_PNG_Hunters_season&diff=prev&oldid=875964469&diffmode=source d] [https://en.wikipedia.org/w/index.php?title=Dear_Old_Ireland&diff=prev&oldid=875956173&diffmode=source e] [https://en.wikipedia.org/w/index.php?title=Caledon_Centre_for_Recreation_and_Wellness&diff=prev&oldid=875955169&diffmode=source f] [https://en.wikipedia.org/w/index.php?title=Equal_Future_2018&diff=prev&oldid=875952563&diffmode=source g] --[[User:DannyS712|DannyS712]] ([[User talk:DannyS712|talk]]) 05:28, 1 January 2019 (UTC)
:For two refs with the same name, yes, that would be [[toollabs:yabbr]]. It doesn't let you do it on a specific page, yet - it takes you through the whole backlog. [[User:Enterprisey|Enterprisey]]&nbsp;([[User talk:Enterprisey|talk!]]) 05:40, 1 January 2019 (UTC)
::{{re|Kailash29792|DannyS712|Enterprisey}} [[User:Cumbril/Reference Organizer]] (formerly: [[User:Cumbril/References Consolidator]]) does that. '''[[User:Sam Sailor|Sam]] [[User talk:Sam Sailor|Sailor]]''' 09:39, 17 April 2019 (UTC)
 
== Wanted: A Script to Lexicographically Order Bullet-Lists ==
{{WQA in progress|type=nolink}}
 
My fellow script enthusiasts, et al., today I bring before you the matter of [[../List|this horrid mess]]. (I see there was ''some'' attempt to maintain a sane ordering, but it fell apart at some stage.)
 
A script is needed to automate [[Lexicographic order|lexicographical ordering]] of items in bullet-lists. This may also be useful in ''See also'' sections of articles. Some points to bear in mind:
 
# Not all bullet-lists need be ordered. The script user must convey which items they want ordered. (i.e. This is not a task for a bot.)
 
Uhm, I guess that's the only point. If you choose to undertake this task, I would be happy to provide insight, if it proves challenging.
 
The first person to conclude a sufficient algorithm gets cake. Regards, <span style="font-family:Times New Roman">[[User:Guywan|''GUYWAN'']] ( [[User talk:Guywan|''t'']] &middot; [[Special:Contributions/Guywan|''c'']] )</span> 22:47, 3 June 2019 (UTC)
:{{ping|Guywan}} see .sort() - https://www.w3schools.com/jsref/jsref_sort.asp [[User:DannyS712|DannyS712]] ([[User talk:DannyS712|talk]]) 00:10, 4 June 2019 (UTC)
 
:{{u|Guywan}} I made a script specifically to sort [[WP:US/L]]. It sorts by the name parameter of the {{tlx|userscript}} template on each line. [https://en.wikipedia.org/w/index.php?diff=904370698&oldid=904334885&title=Wikipedia:User_scripts/List&type=revision&diffmode=source Here it is in action.] Some limitations are that it cannot sort entries that have no name parameter and it does not attempt to sort sub-lists. [https://en.wikipedia.org/wiki/User:Anne_drew_Andrew_and_Drew/ScriptSorter.js Here's a link to the script]. I might add functionality to sort scripts with no name parameter but I'm taking a break for now. [[user:Anne drew Andrew and Drew|<i style="background:#185;color:#fff;font-weight:bold;font-size:.9em;padding:2px 5px;">Anne&nbsp;drew</i>]] ([[user talk:Anne drew Andrew and Drew|talk]]) 18:47, 1 July 2019 (UTC)
 
::{{ping|Anne drew Andrew and Drew}} Firstly, ouch, my fingers! Secondly, great work! Nice and simple script; I like it. I was looking for something more general, but this is quite good. We're halfway there.
{{collapse top}}
:: More generally, we want to build a list of bullet items (<code>/^\*.*/</code> for the first level, <code>/^\*\*.*/</code> for the second, etc) and order it. But we do not want to include markup in the ordering process, so items should be parsed before comparison. (E.g. via <code>mw.Api.parse()</code>) We would then replace the old wikitext with our ordered wikitext.
:: This is my imagining, anyway. Perhaps there is a more elegant solution.
:: P.S: I might suggest a keyboard shortcut that activates the script. ({{key|CTRL|R}}? {{key|CTRL|Shift|R}}?)
:: P.P.S: Also, don't add a portlet link unless <syntaxhighlight lang="JavaScript">mw.config.get("wgAction") == "edit"</syntaxhighlight> (just to declutter when link isn't needed.)
{{Collapse bottom}}
:: Regards, <span style="font-family:Times New Roman">[[User:Guywan|''GUYWAN'']] ( [[User talk:Guywan|''t'']] &middot; [[Special:Contributions/Guywan|''c'']] )</span> 00:16, 4 July 2019 (UTC)
 
:::Hey {{u|Guywan}}, thanks for the helpful feedback! I've made some changes so it only shows up as a portlet link when you are on the [[WP:US/L]] page in edit mode. It also has a keyboard shortcut: {{key|Ctrl|Alt|S}}. Lastly, it can now sort scripts with no "name" parameter. I'll have to look into <code>mw.Api.parse()</code>, it seems useful. [[user talk:Anne drew Andrew and Drew|<span style="color:#074">Anne&nbsp;drew</span>]] 23:39, 9 July 2019 (UTC)
 
::::I would love a script to sort bulleted list. That would be so incredibly useful. &#32;<span style="font-variant:small-caps; whitespace:nowrap;">[[User:Headbomb|Headbomb]] {[[User talk:Headbomb|t]] · [[Special:Contributions/Headbomb|c]] · [[WP:PHYS|p]] · [[WP:WBOOKS|b]]}</span> 15:42, 17 September 2019 (UTC)
 
:::::{{ping|Headbomb}} Try [[User:Guywan/Scripts/BulletSort|BulletSort]]. <span style="font-family:Times New Roman">[[User:Guywan|''GUYWAN'']] ( [[User talk:Guywan|''t'']] &middot; [[Special:Contributions/Guywan|''c'']] )</span> 14:50, 29 November 2019 (UTC)
 
== Script for Merging articles easily. ==
 
Hi greetings, I have a suggestion of a new user script helping in [[WP:MERGE|merging]] articles easily. I mean this script should help to do all things listed in [[WP:MERGETEXT]]. My suggestions on the tool are...
*A double window tool which can display both source page (say first) and destination page (say second) in editing mode. We can copy and paste the ''good content'' from first page to second page. This pages can determine by adding the names in tool before merging.
*After this, tool should blank the page and redirect to second with appropriate edit summaries. Like this second page also should saved with edit summary.
*Remove the merge templates from second page.
*If first page has a talk page, reconcile it. Change the class in Wikiproject templates to ''Redirect''.
*Add merger templates such as {{tl|merged-from}}, {{tl|merged-to}} or {{tl|copied}} in talk pages.
*Automatically fix double redirects.
This is only some suggestions in my mind. It will be very beneficial to users who perform merging if this tool become available. I think there is no other scripts regarding this. Hope that the concerned will consider this. Thank you.--'''[[User:Path slopu|<span style="color:Red">PA</span><span style="color:Green">TH</span>]] [[User talk:Path slopu|<span style="color:Blue">SL</span><span style="color:Maroon">OP</span><span style="color:Darkorange">U</span>]]''' 13:58, 31 July 2019 (UTC)
:Yeah, I've definitely always wanted a script like this. If someone's actually thinking of doing this, that would be wonderful; otherwise, I might move this further up a bit in the queue of scripts I want to write. [[User:Enterprisey|Enterprisey]]&nbsp;([[User talk:Enterprisey|talk!]]) 06:37, 1 August 2019 (UTC)
::{{u|Enterprisey}}, Thank you very much for considering this. Hope that you will consider this when creating a new script. It is a great help if you create this. Thank you. '''[[User:Path slopu|<span style="color:Red">PA</span><span style="color:Green">TH</span>]] [[User talk:Path slopu|<span style="color:Blue">SL</span><span style="color:Maroon">OP</span><span style="color:Darkorange">U</span>]]''' 09:50, 3 August 2019 (UTC)
:Even a rudimentary version would be very useful. Just removing merge tags, placing {{tl|merged to}} and {{tl|merged from}} would be helpful. I've also posted a notice at [[WT:WPMERGE]] since I think there may be others that wish to comment. --[[User:Trialpears|Trialpears]] ([[User talk:Trialpears|talk]]) 21:45, 3 October 2019 (UTC)
:: You can do this using [[WP:TWINK|Twinkle]]. [[User:Robertsky|robertsky]] ([[User talk:Robertsky|talk]]) 22:21, 3 October 2019 (UTC)
:::Are you sure? I thought twinkle only handled the article namespace templates {{tl|merge to}} and {{tl|merge from}}. --[[User:Trialpears|Trialpears]] ([[User talk:Trialpears|talk]]) 22:30, 3 October 2019 (UTC)
:::: Ah... apologies, just noted on the tenses in the template names. Then, yes it would be great to have such functionality.
:::A rundimartary tool, as {{u|Trialpears}} suggests, would save us a bunch of steps. The script could be run once an editor has manually copied all desired material from the source article to the target article. Parameters for the script would be the names of the source and target articles. The script would replace the content of the source article with a redirect. It would remove merge proposal banners ({{tl|merge-from}}, {{tl|merge-to}}) from both, It would add attribution banners {{tl|merged-from}}, {{tl|merged-to}} to talk pages and any other touch ups mentioned above that are nice and easy. The double-window idea sounds like the edit conflict resolution. I'm not convinced that helps a lot even for edit conflicts; Merges are often much more complicated than edit conflict resolution. ~[[User:Kvng|Kvng]] ([[User talk:Kvng|talk]]) 14:07, 6 October 2019 (UTC)
:A merge tool would be very helpful particularly for those regularly involved in merging. I'm not currently a Twinkle user, but the documentation doesn't seem to cover anything like the scope of tools proposed by Trialpears. [[User:Klbrain|Klbrain]] ([[User talk:Klbrain|talk]]) 12:54, 4 October 2019 (UTC)
::{{re|Klbrain|Kvng|Trialpears|Path slopu}} I am considering to create a script based on the feedback here. The details are as follows:
::* The script is to be invoked from an article that is to be merged to another article. There will be a form window in which the name of the target article is to be entered. On submitting, following actions are performed:
::**current page is redirected to specified target, with {{tlx|R from merge}} tag, with a customisable edit summary
::**Any {{tlx|merge from|currentpage}} on target page is removed
::**{{tlx|merged-from}} is added to the talk page of target page
::**{{tlx|merged-to}} added to talk page of current page
::**Any wikiproject templates on talk page are reset with class=redirect, importance parameter is removed.
::*All the above actions are optional and some may be skipped by unchecking a checkbox on the form window.
::
::The actual process of merging content has to be performed manually. Like Kvng, I don't see the benefits of implementing a double-window thing. You just to have open two tabs in separate browser windows and dock them side by side to replicate the effect.
::
::Fixing of double redirects is best left to the bot.
::
::Does all this sound right to you? And can you suggest a proper name for the menu button used for starting the script? [[User:SD0001|SD0001]] ([[User talk:SD0001|talk]]) 18:47, 10 October 2019 (UTC)
:::Sounds perfect. I'm not sure we need the checkboxes for each operation but if you do include them, I hope they will all be checked by default. I suggest standard edit comments for all of these operations be something like "Merged from [[Source page]]. For more information visit [[WP:WPMERGE]]." I personally don't need edit comments to be customizable. ~[[User:Kvng|Kvng]] ([[User talk:Kvng|talk]]) 20:23, 10 October 2019 (UTC)
::::I often like to specify that it was a bold merge or link to the discussion and would personally like custom edit summaries. You may also want to remove {{tl|being merged}}, a new system to keep track of mergers with consensus that haven't yet been implemented. It hasn't really taken off yet, but if it's as easy as I think it is I see no reason not to include it. --[[User:Trialpears|Trialpears]] ([[User talk:Trialpears|talk]]) 20:32, 10 October 2019 (UTC)
:::{{done}} See [[User:SD0001/easy-merge]]. Any feedback is welcome. Please report bugs if you find any. Thanks. [[User:SD0001|SD0001]] ([[User talk:SD0001|talk]]) 22:31, 10 October 2019 (UTC)
::::{{re|Trialpears}} Looking at your recent edits, I have added a date field to the script, so that merged-from and merged-to can be made to take a different date than the default today. Just for maximum flexibility. [[User:SD0001|SD0001]] ([[User talk:SD0001|talk]]) 18:46, 11 October 2019 (UTC)
:::::Well that's great! There are some times where there is a merged version made but isn't implemented due to consensus concerns or the merger not being recorded properly for copyright attribution where this will be really useful. Thanks! --[[User:Trialpears|Trialpears]] ([[User talk:Trialpears|talk]]) 18:52, 11 October 2019 (UTC)
::::::{{re|SD0001}}Hi greetings, thank you very much for considering the request. The tool seems very nice. It reduces the work considerably. Thank you for spending time to create this tool. Regards '''[[User:Path slopu|<span style="color:Red">PA</span><span style="color:Green">TH</span>]] [[User talk:Path slopu|<span style="color:Blue">SL</span><span style="color:Maroon">OP</span><span style="color:Darkorange">U</span>]]''' 10:28, 12 October 2019 (UTC)
::::::{{re|Enterprisey|Trialpears|Kvng|Klbrain}} Thank you very much for the suggestions and recommendations given to the creation of tool. Regards--'''[[User:Path slopu|<span style="color:Red">PA</span><span style="color:Green">TH</span>]] [[User talk:Path slopu|<span style="color:Blue">SL</span><span style="color:Maroon">OP</span><span style="color:Darkorange">U</span>]]''' 10:28, 12 October 2019 (UTC)
::::Thanks {{u|SD0001}}. Tried it on [[Multistage amplifier]]. Went smoothly. ~[[User:Kvng|Kvng]] ([[User talk:Kvng|talk]]) 01:44, 13 October 2019 (UTC)
:::::It's working smoothly for me too (when I use it correctly); thanks! Additions, should one be in the mood, might include stripping various ''request'' templates from the talk page (like [[template:Photo requested]]), and having an option to add other relevant merge templates. The full gamut of such merge templates is large, but for starters an optional [[template:R from alternative language]] (with its 2 important parameters) might be helpful. [[User:Klbrain|Klbrain]] ([[User talk:Klbrain|talk]]) 09:09, 13 October 2019 (UTC)
::::::Nice suggestions. I've updated it to also remove the various request templates, as well as any ''media''-needed or needs-''media'' parameters in wikiproject tags. Regarding addition of redirect templates, I think that's best left to Twinkle. Twinkle already supports adding of R from alt lang with both its parameters. I've also recently filed a patch for Twinkle that will make the redirect tagging interface searchable, making it easy to find a template from the large list. [[User:SD0001|SD0001]] ([[User talk:SD0001|talk]]) 12:35, 13 October 2019 (UTC)
:::::::It looks like the script removes all of the categories on the redirected page; this isn't really a desirable feature, as its helpful to maintain categories which refer to a section or part that is being merged, but not to the whole target page. [[User:Klbrain|Klbrain]] ([[User talk:Klbrain|talk]]) 20:54, 15 October 2019 (UTC)
::::::::This should be optional since there are many mergers from purely duplicative articles for example all the Indian villages with two different transliterations. I also think detecting whether it's a redirect to section or not and tag appropriatly would be good. --[[User:Trialpears|Trialpears]] ([[User talk:Trialpears|talk]]) 21:14, 15 October 2019 (UTC)
 
== Wanted: CSS script to display old padlocks on protected pages instead of new ones ==
I want to use a CSS script to display old padlocks to the right of the page title on protected pages instead of new padlocks. —[[User:Jencie Nasino|Jencie Nasino]] ([[User talk:Jencie Nasino|talk]]) 02:40, 14 August 2019 (UTC)
:{{u|Jencie Nasino}}, see [[User:Enterprisey/old-prot-padlocks.css]]. You can use importStylesheet, like I did in [[Special:Diff/910747286|this edit]], or just copy-and-paste the whole thing into one of your user CSS files. [[User:Enterprisey|Enterprisey]]&nbsp;([[User talk:Enterprisey|talk!]]) 05:13, 14 August 2019 (UTC)
 
== Script allowing addition of inline cleanup tags directly from article page ==
 
Would it be possible to write a userscript which would allow addition of [[Template:Inline cleanup tags|inline cleanup tags]] without having to open the full editor? I find myself reading articles on topics I'm curious about and spotting issues such as weasel words or uncited claims, and I want to add the cleanup tags, but this involves opening the editor and finding the same spot again, which infringes on my reading experience. I know, the standard response here is [[Wikipedia:Tag bombing|don't tag]] but be bold, and I try to do that whenever possible, but to be frank often this happens on topic I don't know much about or have very little interest in improving. I still think that in such situations providing some feedback to parties interested in improving the article may be of some use.
 
This request is really inspired by my experience of using [[User:Galobtter/Shortdesc helper]]. Since I've started using it, upon encountering pages without descriptions, I often find myself reading an article until I have some basic understanding of the topic and writing a description before navigating away, which is something I did significantly less before I discovered the aforementioned tool that makes it super easy.
 
Thanks for your consideration. [[User talk:Melmann|Melmann]] 18:43, 9 September 2019 (UTC)
:I have begun work on this. This is going to be a tough task to get right, so no promises on a finished product for now. [[User:SD0001|SD0001]] ([[User talk:SD0001|talk]]) 10:47, 16 September 2019 (UTC)
::Thank you for your effort, whether it results in a finished product or not. I'll be patiently waiting for my chance to try it out. [[User talk:Melmann|Melmann]] 13:25, 21 September 2019 (UTC)
:::{{ping|Melmann}} I know this isn't exactly what you wanted, but you can take a look at [[User:BrandonXLF/QuickEdit]]. It works by allowing you to edit individual sections without opening the full editor.<span class="nowrap">– [[User:BrandonXLF|<span style="color:blue;">Brandon</span><span style="color:green;">XLF</span>]] ([[User talk:BrandonXLF|talk]])</span> 19:38, 26 December 2019 (UTC)
 
== Group Special:Contributions by page ==
 
Not sure why this wasn't included in [[Special:Preferences#mw-prefsection-rc]] when the group by page option was added for recent changes and the watchlist, but I wanted to do precisely that on [[Special:Contributions]] pages. I looked everywhere and asked at the [[WP:VPT#Script for grouping contributions by page|Village Pump]], to no avail. So I'll leave this as a suggestion here. [[User:Guarapiranga|Guarapiranga]] ([[User talk:Guarapiranga|talk]]) 04:10, 10 December 2019 (UTC)
:{{ping|User:Guarapiranga}} See [[User:BrandonXLF/ContribsByPage.js]] <span class="nowrap">– [[User:BrandonXLF|<span style="color:blue;">Brandon</span><span style="color:green;">XLF</span>]] ([[User talk:BrandonXLF|talk]])</span> 08:03, 8 March 2020 (UTC)
)
== A script to improve linking and readability of the article on a specific date/year/century ==
Regarding the talks on (over)linking of dates
#[[Manual_of_Style#Linking#Linking_month-and-day_or_year]]
; Is it correct that when we put e.g. years, centuries or dates in whatever form, between square brackets, the article gets listed automatically on the wikipedia article of that specific year? I can imagine that this can lead to a page where you it is difficult see what's relevant to you or not. Wouldn't it be interesting to ask for a script to be developed that allows people to show only those events related to e.g. a parameter "art", "politics", "notable people", "fun", "military", "priority level 1", "priority level 2", etc? Sincerely, --[[User:SvenAERTS|SvenAERTS]] ([[User talk:SvenAERTS|talk]]) 03:28, 31 December 2019 (UTC)
:{{u|SvenAERTS}}, no, that's not correct, links don't cause articles to be automatically listed in a year article. What you're suggesting wouldn't be a user script, but a significant change to the core MediaWiki code. If you want to pursue it, you could bring it up at one of the [[WP:VILLAGEPUMP]] boards. --[[User:IamNotU|IamNotU]] ([[User talk:IamNotU|talk]]) 14:55, 31 December 2019 (UTC)
 
== ZoomOnThumb gadget ==
 
The ZoomOnThumb gadget (to zoom images temporarily on mouseover) has been available for a long time on the fr.wiki "Gadgets" preferences page, and it works quite well. I suggest that it be installed among the Gadgets which all en.wiki users can enable through their preferences.
 
In the meantime, interested users can import it into their common.js script. See mine at [[User:Tonymec/common.js]]. Already loaded pages must be reloaded for this JS to work once you've added it to your common.js; AFAICT it doesn't work if the image is inside an infobox. — [[User:Tonymec|Tonymec]] ([[User talk:Tonymec|talk]]) 16:22, 20 January 2020 (UTC)
:For convince for anyone interested, the code to install is <code><nowiki>mw.loader.load('//fr.wikipedia.org/w/index.php?title=MediaWiki:Gadget-ZoomOnThumb.js&action=raw&ctype=text/javascript');</nowiki></code>. {{u|Tonymec}}, if you want this script to be installed as a gadget, make a request at [[WP:VPT]].<span class="nowrap">– [[User:BrandonXLF|<span style="color:blue;">Brandon</span><span style="color:green;">XLF</span>]] ([[User talk:BrandonXLF|talk]])</span> 18:40, 24 January 2020 (UTC)
:: {{ping|BrandonXLF}} OK. — [[User:Tonymec|Tonymec]] ([[User talk:Tonymec|talk]]) 21:30, 24 January 2020 (UTC)
 
== Easy to copy Special:Diff links on diff pages ==
{{resolved}}
Example diff
# URL: https://en.wikipedia.org/w/index.php?title=Ivan_Bortnik&type=revision&diff=843666779&oldid=843651236
# Wikilink: [[Special:Diff/843651236/843666779]]
Note, how in the URL version 843666779 goes before 843651236, and it is the reverse in the wikilink syntax. It would be convenient, if one could easily copy <code><nowiki>[[Special:Diff]]</nowiki></code> syntax from the diff page. —⁠[[User:Andrybak|andrybak]] ([[User talk:Andrybak|talk]]) 10:50, 16 February 2020 (UTC)
: {{ping|Andrybak}} I think [[User:Enterprisey/diff-permalink]] is what you looking for. &#8208;&#8208;[[User:1997kB|1997kB]]&nbsp;([[User_talk:1997kB|talk]]) 13:08, 16 February 2020 (UTC)
:: {{re|1997kB}} thank you! —⁠[[User:Andrybak|andrybak]] ([[User talk:Andrybak|talk]]) 11:39, 17 February 2020 (UTC)
 
== Script to display a drop down list of a user's all subpages in the top toolbar ==
 
I would like a drop down list in the top toolbar that displays a list of all of User's subpages like sandboxes, common.js pages, etc. Thanks in advance. [[User:Dishita Bhowmik|'''''<span style="font-family:Times New Roman"><span style="color:Teal">Dishita</span><span style="color:Navy">Bhowmik</span></span>''''']] 16:50, 29 February 2020 (UTC)
: {{ping|Dishita Bhowmik}} [[User:BrandonXLF/Subpages]] do that to an extent. &#8208;&#8208;[[User:1997kB|1997kB]]&nbsp;([[User_talk:1997kB|talk]]) 02:54, 1 March 2020 (UTC)
:: {{ping|Dishita Bhowmik}} Since you would like it in the top toolbar, do you mean you want a link to a list of all the subpages of your userpage? if so, [[User:PrimeHunter/My subpages.js]] does that (minus the dropdown part).<span class="nowrap">– [[User:BrandonXLF|<span style="color:blue;">Brandon</span><span style="color:green;">XLF</span>]] ([[User talk:BrandonXLF|talk]])</span> 09:04, 1 March 2020 (UTC)
:::{{ping|BrandonXLF}} and {{ping|1997kB}}, thank you! [[User:Dishita Bhowmik|'''''<span style="font-family:Times New Roman"><span style="color:Teal">Dishita</span><span style="color:Navy">Bhowmik</span></span>''''']] 16:35, 1 March 2020 (UTC)