// ==UserScript== // @name Macapp downloader // @namespace http://nobelliu.github.io/ // @version 0.1 // @description enter something useful // @author NobelLiu // @match http://www.macapp.so/*/ // @grant none // @downloadURL none // ==/UserScript== addButton(); function addButton() { var d = document.getElementById("c"); d.style.cssText = "background-color:gray;width:900px;height:100px;padding:5px 10px;border: 0px solid #dedede;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius:3px;"; var link = window.location.href; var a = link.substring(0, 21); a = a + "go/"; var b = link.substring(21); var fin = a + b; d.onclick = function(){ window.location.href = fin; }; }