BTSOW

Add button to download torrent file.Remove Ads

  1. // ==UserScript==
  2. // @name BTSOW
  3. // @namespace btsow
  4. // @version 0.1
  5. // @description Add button to download torrent file.Remove Ads
  6. // @author hex
  7. // @match http*://btos.pw/magnet/detail/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. addDownloadTorrent();
  13. removeAD();
  14. })();
  15.  
  16. function addDownloadTorrent(){
  17. var pathname_split = window.location.pathname.split('/'),
  18. url_torrent = 'http://btcache.me/torrent/'+pathname_split[4],
  19. btn_torrent_download = '<a id="torrent" href='+url_torrent+' class="btn btn-primary" style="margin:20px;" title="Download .Torrent" target="_blank"><span class="glyphicon glyphicon-save"></span>Download .Torrent</a>';
  20. $(btn_torrent_download).prependTo(document.querySelector('div.text-center.hidden-xs'))
  21. }
  22.  
  23. function removeAD(){
  24. document.querySelector('div.row.hidden-xs.text-center').remove()
  25. }