Greasy Fork is available in English.

Paywal killer for HBR

Blocks the paywal from HBR blog

// ==UserScript==
// @name       Paywal killer for HBR
// @namespace  http://blogs.hbr.org/*
// @version    0.1
// @description  Blocks the paywal from HBR blog
// @include      http://blogs.hbr.org/*
// @copyright  2013+, Sergio H. Schuler
// ==/UserScript==

function kill(elementName)
{
    var elementInQuestion = document.getElementById(elementName);
    elementInQuestion.parentNode.removeChild(elementInQuestion);
}

kill("paywallPrompt");