userstyles.org Download Styles Without Stylish

This scripts allows you to download style directly without stylish installed.

  1. // ==UserScript==
  2. // @name userstyles.org Download Styles Without Stylish
  3. // @namespace http://greasyfork.org
  4. // @author NightsoN
  5. // @description This scripts allows you to download style directly without stylish installed.
  6. // @include http*://userstyles.org/styles/*
  7. // @exclude *.css
  8. // @version 0.0.1.20141025045448
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. var url = document.querySelector('link[rel="canonical"]').href + ".css";
  13. document.getElementById("style-install-mozilla-no-stylish").innerHTML = '<a id="download-button" class = "alternate-install" style="text-decoration:none;" href="' + url + '">Download This Style</button>';
  14. document.getElementById("switch-browser-note").hidden = true;
  15. }());