This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load first 50 diffs with only "Load Diff" button, without reason (this exclude large files, deleted files and so on) | |
javascript: | |
Array.from(document.querySelectorAll('.js-diff-load-button-container')).filter(container => !container.querySelector('.hidden-diff-reason')).slice(0, 50).forEach(container => container.querySelector('.load-diff-button').click()) | |
// Load diffs with only "Load Diff" button, without reason (this exclude large files, deleted files and so on) | |
javascript: | |
Array.from(document.querySelectorAll('.js-diff-load-button-container')).filter(container => !container.querySelector('.hidden-diff-reason')).forEach(container => container.querySelector('.load-diff-button').click()) | |
// Load all diffs | |
javascript: |