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
//Open DevTools and paste this in Console. | |
function sleep(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
async function deleteLikedVideos() { | |
'use strict'; | |
var items = document.querySelectorAll('ytd-menu-renderer > yt-icon-button.dropdown-trigger > button[aria-label]'); | |
var out; |
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
(async()=>{ | |
let json = await (await fetch('https://api.tvmaze.com/schedule/full')).json(), | |
data = []; | |
(json.filter(d=>d._embedded.show.rating.average && d.number === 1 && d._embedded.show.network?.country.code === "US")) | |
.forEach(d=>data.push({title:d._embedded.show.name, season:d.season, airdate:d.airdate, type:d._embedded.show.type, genre:d._embedded.show.genres.join(", "), rating:d._embedded.show.rating?.average})); | |
console.clear(); | |
console.table(data); | |
} | |
)(); |
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
// ==UserScript== | |
// @name Google PlayStore Info | |
// @namespace http://tampermonkey.net/ | |
// @version 9.1.2 | |
// @description try to take over the world! | |
// @author You | |
// @match https://play.google.com/store/* | |
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://play.google.com | |
// @grant none | |
// ==/UserScript== |
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
let fetch = require("cross-fetch"); | |
let fs = require("fs"); | |
let process = require("process"); | |
var ffmpeg = require("fluent-ffmpeg"); | |
const cliProgress = require('cli-progress'); | |
const cliSelect = require('cli-select'); | |
const REMOVE_ALL_MP4 = true; | |
const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic); |
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
// ==UserScript== | |
// @name Youtube Fresh Videos only | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Filter Youtube Recommended to show only less then a month, with different styles for hours days and weeks. | |
// @author Your Grandma | |
// @match https://www.youtube.com/ | |
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://youtube.com | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Pricy Check Price | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.emag.ro/* | |
// #match https://*/* | |
// @icon https://www.google.com/s2/favicons?domain=emag.ro | |
// @run-at context-menu |
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
// ==UserScript== | |
// @name Discord Avatar | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://discord.com/channels/* | |
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://discord.com | |
// @grant GM_xmlhttpRequest | |
// @grant GM.setValue |
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
// ==UserScript== | |
// @name xCSS Trello | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://trello.com/* | |
// @match https://*.trello.com/* | |
// @grant none | |
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://www.w3schools.com/ |
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
// ==UserScript== | |
// @name Discord Shortcuts | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://discord.com/* | |
// @icon https://icons.duckduckgo.com/ip2/discord.com.ico | |
// @grant none | |
// ==/UserScript== |
OlderNewer