Skip to content

Instantly share code, notes, and snippets.

View pixelcrisis's full-sized avatar

pixelcrisis pixelcrisis

View GitHub Profile
@pixelcrisis
pixelcrisis / autoskip.js
Created October 12, 2023 01:27
DeepCut AutoSkip Broken Tracks
(function () {
if (!window.turntable) return alert("Not Loaded, Try Again.");
else console.log("Auto-Skip Initiated.");
const look = function (event) {
let src = window.youtube?.player?.[0];
if (!src) return console.log("Auto-Skip: Not Youtube.");
let can = src.getPlayerState();
if (can == "-1") return setTimeout(skip, 1000);