Skip to content

Instantly share code, notes, and snippets.

View Odex64's full-sized avatar
Cortisol Peak

Carmine Pietroluongo Odex64

Cortisol Peak
View GitHub Profile
@DinoChiesa
DinoChiesa / delete-watch-history-shorts.console.js
Last active May 15, 2026 11:47
Remove video shorts from YT Watch History
// orig: https://gist.github.com/miketromba/334282421c4784d7d9a191ca25095c09
// Paste the script into your console on this page: https://myactivity.google.com/product/youtube
const ENABLED = true;
const MIN_DURATION_MS = 1000 * 60 * 1.5; // 1:30 mins
const CHECK_FOR_CONFIRM_INTERVAL = 2000;
let CYCLE_INTERVAL = 1800; // Amount of time in MS to wait between deletion (more likely to fail with a small number)
let wantCycling = true;
const VERY_LONG_DURATION = MIN_DURATION_MS * 10;