Skip to content

Instantly share code, notes, and snippets.

View rynomad's full-sized avatar

Ryan Bennett rynomad

View GitHub Profile
@rynomad
rynomad / ludkowsky.user.js
Created April 8, 2023 20:59
replace Yudkowsky with Ludkowsky on twitter
// ==UserScript==
// @name Replace Yudkowsky with Ludkowsky on Twitter
// @namespace Violentmonkey Scripts
// @match https://twitter.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
@rynomad
rynomad / smiley.user.js
Created April 10, 2023 03:34
makes a smiley face
// ==UserScript==
// @name Add Smiley Face
// @namespace Violentmonkey Scripts
// @match http*://*/*
// @grant none
// ==/UserScript==
(function() {
// Create a div element for the smiley face
const smileyDiv = document.createElement("div");
// ==UserScript==
// @name Smiley Face Button
// @namespace Violentmonkey Scripts
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// ==UserScript==
// @name Smiley Face Button
// @namespace Violentmonkey Scripts
// @version 1
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
@rynomad
rynomad / Auto Refresh.user.js
Created April 10, 2023 04:00
Automatically refreshes the page every 10 seconds.
// ==UserScript==
// @name Auto Refresh
// @namespace Violentmonkey Scripts
// @version 1.0
// @description Automatically refreshes the page every 10 seconds.
// @author Your Name
// @match *://*/*
// @grant none
// ==/UserScript==
@rynomad
rynomad / Auto Refresh.user.js
Created April 10, 2023 04:08
Automatically refreshes the page every 10 seconds.
// ==UserScript==
// @name Auto Refresh
// @namespace Violentmonkey Scripts
// @version 1.0
// @description Automatically refreshes the page every 10 seconds.
// @author Your Name
// @match *://*/*
// @grant none
// ==/UserScript==
@rynomad
rynomad / Auto Refresh.user.js
Created April 10, 2023 04:09
Automatically refreshes the page every 10 seconds.
// ==UserScript==
// @name Auto Refresh
// @namespace Violentmonkey Scripts
// @version 1.0
// @description Automatically refreshes the page every 10 seconds.
// @author Your Name
// @match *://*/*
// @grant none
// ==/UserScript==
@rynomad
rynomad / Hello World Script.user.js
Created April 10, 2023 04:10
Greets the user with a popup message when they visit a website.
// ==UserScript==
// @name Hello World Script
// @namespace Violentmonkey Scripts
// @version 1.0
// @description Greets the user with a popup message when they visit a website.
// @author Your Name
// @match *://*/*
// @grant GM_notification
// ==/UserScript==
@rynomad
rynomad / Auto Refresh.user.js
Created April 10, 2023 04:11
Automatically refreshes the page every 10 seconds.
// ==UserScript==
// @name Auto Refresh
// @namespace Violentmonkey Scripts
// @version 1.0
// @description Automatically refreshes the page every 10 seconds.
// @author Your Name
// @match *://*/*
// @grant none
// ==/UserScript==
@rynomad
rynomad / Big Smileys Everywhere.user.js
Created April 10, 2023 04:15
Adds a big smiley face to the upper right corner of every page
// ==UserScript==
// @name Big Smileys Everywhere
// @description Adds a big smiley face to the upper right corner of every page
// @version 1
// @match *://*/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';