// ==UserScript== // @name Show Popup Download Link from Embeded Video File Hosting // @version 0.1 // @description Support: acefile.net, aisfile.com, tusfiles.net, nomofile.com,mp4upload.com // @include http://* // @include https://* // @grant GM_openInTab // @namespace http:// // @copyright 2015+, cybercode // @downloadURL none // ==/UserScript== var url = document.location.toString(); var m = null; var m = /(embed-)([^\/]+)(-[^\.]+)(\.html)/; if (m.test(location.href)) GM_openInTab(location.href.replace(m, "$2$4"));