Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Copy Button For SOX Guest

SOX

// ==UserScript==
// @name SOX Copy
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *://*.stackoverflow.com/*
// @match *://*.stackexchange.com/*
// @match *://*.superuser.com/*
// @match *://*.serverfault.com/*
// @match *://*.askubuntu.com/*
// @match *://*.stackapps.com/*
// @match *://*.mathoverflow.net/*
// @grant GM_setClipboard
// ==/UserScript==

var $ = unsafeWindow.jQuery;
unsafeWindow.copy=function (a){
GM_setClipboard(a);
}
unsafeWindow.copyf=function(){
var $a=$('').css({
background: "rgba(210, 98, 26, 0) url(http://bit.ly/copyicon) no-repeat scroll 0px 0px",
height: "20px",
position: "relative",
bottom: "0px",
left: "5px",
border: "0px",
float: "right",
'box-shadow':"none",
});
$('.highlight,pre:has(code)').prepend($a);
};
unsafeWindow.copyf();


This post first appeared on SMARTMANOJ, please read the originial post: here

Share the post

Copy Button For SOX Guest

×

Subscribe to Smartmanoj

Get updates delivered right to your inbox!

Thank you for your subscription

×