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 Remove Twitter Discover More Section | |
// @namespace https://d23.dev/ | |
// @version 1.1 | |
// @description Removes the "Discover More" section on tweet replies | |
// @author angeld23 | |
// @match *://*.twitter.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
// @grant none | |
// ==/UserScript== |
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 Remove Twitter Blue Promotions | |
// @namespace https://d23.dev/ | |
// @version 1.1 | |
// @description Removes the "Get Verified" box on the Home page and the "Verified" button on the sidebar | |
// @author angeld23 | |
// @match *://*.twitter.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
// @grant none | |
// ==/UserScript== |
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 Vanished Tweet Recovery | |
// @namespace https://d23.dev/ | |
// @version 1.2 | |
// @description Detects whenever a tweet mysteriously vanishes from your timeline for no reason and allows you to re-open it | |
// @author angeld23 | |
// @match *://*.x.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=x.com | |
// @grant none | |
// ==/UserScript== |
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
"use strict"; | |
// ==UserScript== | |
// @name YouTube Video Persistence | |
// @namespace http://tampermonkey.net/ | |
// @version 1.4 | |
// @description Makes YouTube videos persistent, saving your place so you can come back later. | |
// @author angeld23 | |
// @match *://*.youtube.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com |
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
-- Name: Leaderstats Module | |
-- Author: angeld23 | |
-- Date: 2022-17-01 | |
-- Description: Wrapper that automatically handles the creation and modification of leaderstats inside Roblox Player instances. | |
--[[ Usage Example | |
```lua | |
local Leaderstats = require(Path.To.Leaderstats.Module.Here) | |
local Player1 = game.Players.Player1 |