Greasy Fork

Collapse All Survey Folders in Qualtrics

Collapses all folders on load and adds Collapse All button

当前为 2019-11-19 提交的版本,查看 最新版本

// ==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
// ==/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();
  });
})();