Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: Open URL Background
Submitted on May 27, 2016 at 12:49 PM

Section 1 (Text)

// ==UserScript==
// @name          Open URL Background
// @description   Open URL Background
// ==/UserScript==
 
document.addEventListener ("keydown", function(event){
        if(event.shiftKey && event.keyCode == 65){
            openNewBackgroundTab();
        }
    }, false);
 
function openNewBackgroundTab(){
    var a = document.createElement("a");
    a.href = "http://www.google.com";
    var evt = document.createEvent("MouseEvents");
    //the tenth parameter of initMouseEvent sets ctrl key
    evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0,
                                true, false, false, false, 0, null);
    a.dispatchEvent(evt);
}