// ==UserScript== // @name Collapse All Survey Folders in Qualtrics // @author andmade // @license MIT // @description Collapses all folders on load and adds Collapse All button // @include http://*.qualtrics.com/Q/MyProjectsSection // @version 1.0 // @namespace https://greasyfork.org/users/399468 // @downloadURL none // ==/UserScript== (function() { jQuery('.collapse-icon-container:not(.ng-hide):has(.icon-angle-down-sm)').click(); var collapseButton = document.createElement('li'); collapseButton.innerHTML = 'Collapse All'; jQuery(collapseButton).addClass('hoverable'); jQuery(collapseButton).css('cursor', 'pointer'); var folderContainer = document.getElementById('Folder_0'); folderContainer.insertAdjacentElement('beforebegin', collapseButton); collapseButton.addEventListener('click', function() { jQuery('.collapse-icon-container:not(.ng-hide):has(.icon-angle-down-sm)').click(); }); })();