Memrise "Seth"

try to take over the world!

目前為 2016-11-09 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Memrise "Seth"
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  try to take over the world!
// @author       Summer Wummer
// @match        http://www.memrise.com/home/
// @grant        **
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('.progress { background-image: linear-gradient(#8ede28, #8ede28 49.9%, #8ede28 50%); background-color: #8ede28; border: 1px solid #578b15; overflow: visible; position: relative; };');