Skip to content

Instantly share code, notes, and snippets.

@mogsdad
Last active June 26, 2016 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mogsdad/2e49f6128cfc53cc94321a58bff288ef to your computer and use it in GitHub Desktop.
Save mogsdad/2e49f6128cfc53cc94321a58bff288ef to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Sticky post-menu
// @namespace http://socvr.net/
// @version 0.2
// @description Duplicate "share edit close..." menu at top of question.
// @author Mogsdad
// @match http://stackoverflow.com/questions/*
// @include /^https?:\/\/\w*.?(stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com\/(questions|posts|review|tools)\/(?!tagged\/|new\/).*/
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('h1:first').before($(".post-menu:first").clone(true));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment