Skip to content

Instantly share code, notes, and snippets.

@emcoffey3
emcoffey3 / get-youtube-shorts-urls.js
Created July 25, 2023 19:27
Get YouTube Shorts Standard Player URLs
document.querySelectorAll('a[href^="/shorts"]').forEach(a => {
console.log(a.getAttribute('aria-label'));
console.log(a.href.replace("shorts/", "watch?v="));
});
const getNumbersInEnglish = () => {
const numbersInEnglish = [
"zero",
"one",
"two",
"three",
"four",
"five",
"six",
"seven",