Sleazy Fork is available in English.

Shellshock.io Adblocker v0.1

A simple ad-blocker for shellshockers. Note: May not work on Brave Browser.

// ==UserScript==
// @name         Shellshock.io Adblocker v0.1
// @namespace    http://
// @version      0.1
// @description  A simple ad-blocker for shellshockers. Note: May not work on Brave Browser.
// @author       NinjaUser
// @match        https://shellshock.io/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById('gameAdContainer').remove();
    document.getElementById('videoAdContainer').remove();
    document.getElementById('ad_unit').remove();
})();