Show Popup Download Link from Embeded Video File Hosting

Support: acefile.net, aisfile.com, tusfiles.net, other file hosting with embed video /embed-xxxxyy-size.html

  1. // ==UserScript==
  2. // @name Show Popup Download Link from Embeded Video File Hosting
  3. // @version 0.4
  4. // @description Support: acefile.net, aisfile.com, tusfiles.net, other file hosting with embed video /embed-xxxxyy-size.html
  5. // @author Like Riasa @cybercode
  6. // @include http://*
  7. // @include https://*
  8. // @grant GM_openInTab
  9. // @namespace https://greasyfork.org/en/scripts/8421-show-popup-download-link-from-embeded-video-file-hosting
  10. // @copyright 2015+, cybercode
  11. // ==/UserScript==
  12.  
  13. var m = null;
  14. var m = /(embed-)([^\/]+)(-[^\.]+)(\.html)/;
  15. if (m.test(location.href))
  16.  
  17. GM_openInTab(location.href.replace(m, "$2$4"));