Deleting all pages within a Canvas Course can be tedious as there isn't the ability to "Select All" pages.
Add the steps involved:
Paste the following into the Console and press "Enter"
document.querySelectorAll('input[type="checkbox"]').forEach(function(checkbox) { if (!checkbox.checked) { checkbox.click(); } }); |
Related articles appear here based on the labels you select. Click to edit the macro and add or change labels.
|