Skip to content

Instantly share code, notes, and snippets.

@insin
insin / experiencing-interruptions-fixer-for-youtube.user.js
Last active February 23, 2026 03:43
"Experiencing interruptions?" fixer for YouTube userscript - click "Raw" to install in your userscript manager
// ==UserScript==
// @name "Experiencing interruptions?" fixer for YouTube
// @version 2
// @match https://www.youtube.com/*
// @run-at document-start
// ==/UserScript==
function observe(target, callbackFn, options = {childList: true}) {
return new Promise((resolve) => {
function callback(mutations, observer) {
let value = callbackFn(mutations, observer)
@anamoyee
anamoyee / google_maps_24h_time.user.js
Created January 1, 2026 04:30
A crude (but working) tampermonkey/violentmonkey script to change most 12h time displays into 24h format in Google Maps (since they cant be bothered to add "English (UK)" language option...). This will probably break if they ever change the jslog ids or the general layout of the page.
// ==UserScript==
// @name Google Maps 24h Time Converter
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Convert most am/pm times to 24-hour format on Google Maps
// @author You
// @match https://www.google.com/maps/*
// @grant none
// ==/UserScript==