Skip to content

Instantly share code, notes, and snippets.

View GabrielCartier's full-sized avatar
🍳
Cooking

0xGabey GabrielCartier

🍳
Cooking
View GitHub Profile
@GabrielCartier
GabrielCartier / view-all-pr-files.js
Created October 15, 2025 07:29
Toggle all files of a PR as viewed
// Check all "viewed" checkboxes on GitHub PR
(function() {
// Find all checkboxes with the js-reviewed-checkbox class
const checkboxes = document.querySelectorAll('.js-reviewed-checkbox[name="viewed"]');
console.log(`Found ${checkboxes.length} file checkboxes`);
// Set all boxes to viewed
checkboxes.forEach((checkbox, index) => {
if(checkbox.checked) {