User:3mi1y/toggle-collapsible-text.js

Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Adds a link to the toolbar (left sidebar on old Vector, probably some menu on other skins) to toggle all the collapsible things with [show]/[hide] links.
// I don't actually remember why I needed this, but it was a page with a *lot* of them and it was faster to script it than to click them all.

$(function() {
	$('#p-tb div ul').append('<li id="t-expand-all"><a onclick="$(\'a.mw-collapsible-text:contains(\\\'show\\\')\').click()">Toggle all collapsible-text</a></li>');
});