DL Button

add a download button

  1. // ==UserScript==
  2. // @name DL Button
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.12
  5. // @description add a download button
  6. // @author zhu
  7. // @match http://*/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var button = document.createElement("input"); //创建一个input对象(提示框按钮)
  15. button.setAttribute("type", "button");
  16. button.setAttribute("value", "下载");
  17. button.style.width = "60px";
  18. button.style.align = "center";
  19. button.style.marginLeft = "250px";
  20. button.style.marginBottom = "10px";
  21. button.style.background = "#b46300";
  22. // button.style.border = "1px solid " + "#b46300";//52
  23. button.style.color = "white";
  24. var x = document.getElementById("lg");
  25. x.appendChild(button);
  26.  
  27.  
  28. // Your code here...
  29. })();