Skip to content

Instantly share code, notes, and snippets.

@kms70847
kms70847 / char_count_adder.user.js
Last active November 19, 2019 16:37
In SO chat, adds a label indicating the character count of your message
// ==UserScript==
// @name char count adder (SO Chat)
// @namespace .
// @description Adds a label indicating the character count of your message
// @include http://chat.stackoverflow.com/rooms/*
// @include https://chat.stackoverflow.com/rooms/*
// @version 3
// @grant none
// ==/UserScript==
@kms70847
kms70847 / avatar_blocker.user.js
Created February 2, 2015 17:49
removes the avatars of ten-or-less rep users
// ==UserScript==
// @name avatar blocker
// @namespace about:blank
// @description removes the avatars of ten-or-less rep users
// @include http://chat.stackoverflow.com/rooms/*
// @version 1
// @grant none
// ==/UserScript==
//gets the reputation of the user that owns this user-container
@kms70847
kms70847 / share_markdown.user.js
Last active April 21, 2021 16:00
For each Stack Overflow question, adds an additional box to the "share" button, containing a link with markdown
// ==UserScript==
// @name Share Markdown (Stack Overflow)
// @namespace about:blank
// @include /^https?:\/\/\w*.?(stackexchange.com|stackoverflow.com|serverfault.com|superuser.com|askubuntu.com|stackapps.com|mathoverflow.net)\/questions/.*/
// @version 8
// @grant none
// ==/UserScript==
function make_input(text){
var input = document.createElement("input");
@kms70847
kms70847 / network_bar_filter.user.js
Last active April 30, 2018 17:55
Filters links out of Stack Overflow's "Hot Network Questions" sidebar
// ==UserScript==
// @name Network Bar Filter
// @namespace about:blank
// @include http://stackoverflow.com/*
// @include https://stackoverflow.com/*
// @include *.stackexchange.com/*
// @version 3
// @grant none
// ==/UserScript==
@kms70847
kms70847 / soChatSpoilerAdd.user.js
Last active August 29, 2015 14:08
User script which adds a "spoiler" button to the Stack Overflow chat room interface.
// ==UserScript==
// @name spoiler button adder (SO Chat)
// @namespace about:blank
// @include http://chat.stackoverflow.com/rooms/*
// @version 1
// @grant none
// ==/UserScript==
//adds a spoiler to the input textarea.
//inserts it wherever your cursor is.