Skip to content

Instantly share code, notes, and snippets.

import os
import zlib
import socket
ALG_SET_KEY = 1
ALG_SET_IV = 2
ALG_SET_OP = 3
ALG_SET_AEAD_ASSOCLEN = 4
ALG_SET_AEAD_AUTHSIZE = 5
MSG_MORE = 0x8000
@asivery
asivery / yt-disable-kevlar.user.js
Created April 11, 2024 22:48
Disable Youtube Kevlar UI (New UI experiment)
// ==UserScript==
// @name Disable Youtube Kevlar UI (New UI experiment)
// @version 1
// @author asivery
// @grant unsafeWindow
// @run-at document-start
// @include https://*.youtube.com/*
// ==/UserScript==
window.addEventListener('load', function e(){
unsafeWindow.yt.config_.EXPERIMENT_FLAGS.kevlar_watch_grid = false;