View twittercleanup.user.js
This file contains 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 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
This file contains 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 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
This file contains 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 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
This file contains 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 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== |