Show Popup Download Link from Embeded Video File Hosting

Support: acefile.net, aisfile.com, tusfiles.net, nomofile.com,mp4upload.com

目前为 2015-03-06 提交的版本。查看 最新版本

// ==UserScript==
// @name       Show Popup Download Link from Embeded Video File Hosting
// @version    0.2
// @description  Support: acefile.net, aisfile.com, tusfiles.net, nomofile.com,mp4upload.com
// @include        http://*
// @include        https://*
// @grant GM_openInTab
// @namespace https://greasyfork.org/en/scripts/8421-show-popup-download-link-from-embeded-video-file-hosting
// @copyright  2015+, cybercode
// ==/UserScript==

var m = null;
var m = /(embed-)([^\/]+)(-[^\.]+)(\.html)/;
if (m.test(location.href))

GM_openInTab(location.href.replace(m, "$2$4"));