Twitter Scala School CSS Fix

try to take over the world!

נכון ליום 03-05-2018. ראה הגרסה האחרונה.

// ==UserScript==
// @name         Twitter Scala School CSS Fix
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       ufolr & rexer & lzl
// @match        https://twitter.github.io/scala_school/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    Array.from(document.querySelectorAll('link[rel="stylesheet"]')).map(n => n.href = '/scala_school' + n.getAttribute('href'))
})();