Skip to content

Instantly share code, notes, and snippets.

View kylewardnz's full-sized avatar

Kyle kylewardnz

  • Auckland, New Zealand
  • 10:30 (UTC +13:00)
View GitHub Profile
View twittercleanup.user.js
// ==UserScript==
// @name Cleanup Twitter
// @include https://twitter.com/*
// ==/UserScript==
function cleanup() {
// remove things from left sidebar & share tweet button
["Twitter Blue", "Bookmarks", "Share Tweet"].forEach(function(str) {
for (let kid of document.querySelectorAll(`[aria-label="${str}"]`)) {
kid.remove();
View twitterclean.user.js
// ==UserScript==
// @name Twitter cleanup
// @namespace Violentmonkey Scripts
// @include https://twitter.com/*
// @grant none
// @version 1.0
// @author -
// @description 12/24/2022, 6:46:03 PM
// ==/UserScript==
View twitch-on-mlg.js
// ==UserScript==
// @name Twitch on MLG
// @namespace https://team-reflex.com
// @version 1.0
// @description Use Twitch player and chat on MLG
// @author Kairu
// @match http://cod.majorleaguegaming.com/
// @grant none
// ==/UserScript==
View twitter-volume-control.js
// ==UserScript==
// @name Twitter Volume
// @namespace https://team-reflex.com
// @version 1.0
// @description lowers the volume of Twitter videos
// @author Kairu
// @match https://*.twitter.com/*
// @grant none
// @run-at document-idle
// ==/UserScript==