Skip to content

Instantly share code, notes, and snippets.

View dvingerh's full-sized avatar
💭
I may be slow to respond.

Dirk Vingerhoeds dvingerh

💭
I may be slow to respond.
View GitHub Profile
@dvingerh
dvingerh / discord.doubleclickedit.user.js
Last active March 17, 2017 18:47
Discord Userscript: Adds functionality to edit messages by doubleclicking them. (Discord Double Click Edit)
// ==UserScript==
// @name Discord Double Click Edit
// @description Adds functionality to edit messages by doubleclicking them
// @namespace Violentmonkey Scripts
// @grant GM_addStyle
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @match *://discordapp.com/*
//
// ==/UserScript==
@dvingerh
dvingerh / hf.notepadpopup.user.js
Last active March 17, 2017 18:48
HackForums Userscript: Notepad popup for HackForums (HF Notepad Popup)
// ==UserScript==
// @name HF Notepad Popup
// @namespace Notepad popup for HackForums
// @description Notepad popup for HackForums
// @include *hackforums.net/*
// @version 0.1
// ==/UserScript==
//
//
@dvingerh
dvingerh / discord.smarterembeds.user.js
Created April 17, 2017 15:22
It basically makes the embeds align horizontally, so when there's multitple links in the same message, it takes less space in the chat.
// ==UserScript==
// @name Discord SmarterEmbeds
// @namespace https://github.com/BeardDesign1/SmarterEmbeds
// @version 0.1
// @description It basically makes the embeds align horizontally, so when there's multitple links in the same message, it takes less space in the chat.
// @author BeardDesign1 & Cammy (userscript port)
// @match *discordapp.com/*
// @grant GM_addStyle
// ==/UserScript==
@dvingerh
dvingerh / hf.viewselfpostsothers.user.js
Last active April 26, 2017 20:35
HackForums Userscript: View all posts of other users in a thread easily with this script, adding an extra button next to the TS button. (HackForums View Self Posts Other Members Button)
// ==UserScript==
// @name HF View Self Posts Other Members Button
// @namespace HackForums View Self Posts Other Members Button
// @description View all posts of other users in a thread easily with this script, adding an extra button next to the TS button.
// @include *hackforums.net/showthread.php?*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js
// @version 0.1
// ==/UserScript==
var smartQuoteBackgroundColor = "#adb1a1"; // (Default: #adb1a1)
var smartQuoteTextColor = "#111111"; // (Default: #111111)
// Quote Header Colors (Header of Quote Block)
var smartQuoteHeaderTextColor = "#000000"; // (Default: #000000)
var smartQuoteHeaderBackgroundColor = "#b1d8bf"; // (Default: #b1d8bf)
// Notification Text - Username Quoted (Mention text at top of page)
var showsmartQuoteNotification = true; // (Default: true)
var smartQuoteNotificationColor = "#bbb"; // (Default: #FF3B30)
var smartQuoteNotificationColorMentioned = "#ff0000"; // (Default: #FF3B30)
// Quote Header Colors - Username Quoted
@dvingerh
dvingerh / hf.defaultpmtext.user.js
Created July 12, 2017 20:03
HF Default Text for PMs
// ==UserScript==
// @name HF Default Text for PMs
// @namespace Cammy
// @version 0.1
// @description Sets a default greeting / signature message while writing HF PMs
// @author You
// @match *hackforums.net/private.php?action=send*
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js
// ==/UserScript==
@dvingerh
dvingerh / dumpert.topreaguurder.user.js
Created August 25, 2017 16:48
Dumpert verkrijg topcomment en topreaguursel
// ==UserScript==
// @name Dumpert verkrijg topcomment en topreaguursel
// @namespace Dumpert verkrijg topcomment en topreaguursel
// @version 0.1
// @description <3
// @author Cammy
// @match *comments.dumpert.nl/embed/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @grant none
// ==/UserScript==
"use strict";
(function () {
/*
Tested only in Chrome, ¯\_(ツ)_/¯
Please feel free to port/fix/fork.
*/
const ver = 'V.20170617.090454';
const src = 'https://github.com/taengstagram/IG-Comments-Bookmarklet/';
console.info(ver);
console.info(src);
"use strict";
(function () {
/*
Tested only in Chrome, ¯\_(ツ)_/¯
Please feel free to port/fix/fork.
*/
const ver = 'V.20170617.090454';
const src = 'https://github.com/taengstagram/IG-Comments-Bookmarklet/';
console.info(ver);
console.info(src);
@dvingerh
dvingerh / discord.autoreadguilds.user.js
Created October 31, 2017 13:02
Useful for emote servers. Whenever there's an unread message in a guild, this script will automatically mark it as read.
// ==UserScript==
// @name Discord Auto Mark As Read Guilds
// @description Useful for emote servers. Whenever there's an unread message in a guild, this script will automatically mark it as read.
// @namespace Violentmonkey Scripts
// @grant GM_addStyle
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @require https://raw.githubusercontent.com/pie6k/jquery.initialize/master/jquery.initialize.min.js
// @match *://discordapp.com/*
//
// ==/UserScript==