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
| // 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; |