Skip to content

Instantly share code, notes, and snippets.

View lihuelworks's full-sized avatar
👨‍💻
Programando...

Mathias Lihuel Gomez lihuelworks

👨‍💻
Programando...
View GitHub Profile
@lihuelworks
lihuelworks / scribe.rip_dark_scrollbar.js
Created November 26, 2025 05:21
Dark Scrollbar for Scribe.rip (it probably has one already but Chrome is not getting it, this is my scotch tape fix for it)
// ==UserScript==
// @name Scribe.rip Dark Scrollbar
// @namespace test
// @version 1.0
// @match *://scribe.rip/*
// @run-at document-start
// @license Unlicense
// ==/UserScript==
(function () {
@lihuelworks
lihuelworks / gist:63c857ded1c13887093588e537070396
Last active April 7, 2024 23:38
Bookmarklet - recover private/deleted video video via Wayback Machine
javascript:(function() {
var ytUrl = window.location.href;
var useVideoId = false;
if (ytUrl.includes("youtube.com") || ytUrl.includes("youtu.be")) {
var useVideoIdInput = confirm("Do you want to use the video ID of the current YouTube video?");
if (useVideoIdInput) {
useVideoId = true;
}
}