Skip to content

Instantly share code, notes, and snippets.

View au5ton's full-sized avatar
😶‍🌫️
Working on closed-source stuff

Austin Jackson au5ton

😶‍🌫️
Working on closed-source stuff
View GitHub Profile
@au5ton
au5ton / README.md
Created August 28, 2018 20:56
Download all FLACs from Apollo 11 audio on Archive.org
@au5ton
au5ton / MEFormFiller.user.js
Created October 30, 2018 03:34
written by Fluff
// ==UserScript==
// @name Card Farmer lel
// @version 1
// @include https://mnevnt-prod1.pegacloud.io/*
// @grant none
// ==/UserScript==
checkFrame();
function checkFrame()
@au5ton
au5ton / index.html
Last active March 25, 2023 22:03
LitElement my-context-provider sample
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Vite + Lit + TS</title>
<script type="module" src="/src/index.ts"></script>
</head>
<body>
<my-context-provider>
<my-inner-element>AAA</my-inner-element>
@au5ton
au5ton / Remove videos from Youtube Watch Later playlist.md
Created April 3, 2023 03:05 — forked from astamicu/Remove videos from Youtube Watch Later playlist.md
Script to remove all videos from Youtube Watch Later playlist

UPDATED 22.11.2022

It's been two years since the last update, so here's the updated working script as per the comments below.

Thanks to BryanHaley for this.

setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

 video.querySelector('#primary button[aria-label="Action menu"]').click();