X-Git-Url: https://git.ao2.it/GM_direct_download_links.git/blobdiff_plain/c2a9f12bdb946e7b5758f003345fca8f54cee4f3..ca63049e6351fb4deee1e227846d562dd213fd74:/direct_download_links.user.js?ds=inline diff --git a/direct_download_links.user.js b/direct_download_links.user.js index bd8e32a..2c319e6 100644 --- a/direct_download_links.user.js +++ b/direct_download_links.user.js @@ -1,7 +1,7 @@ // direct_download_links - Add direct download links -// version 0.3 -// 2011-12-23 -// Copyright (C) 2011 Antonio Ospite +// version 0.4 +// 2012-02-12 +// Copyright (C) 2011,2012 Antonio Ospite // Released under the GPL license // http://www.gnu.org/copyleft/gpl.html // @@ -98,7 +98,7 @@ var supported_sites = [ locationRegexp: /^http:\/\/www\.kataweb\.it\/tvzap\/.*$/, urlContainerXPath: '//div[@id="tvzap_video"]', urlRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, - linkDestXPath: '//div[@id="playerCont"]', + linkDestXPath: '//div[@id="tvzap_video"]', }, { locationRegexp: /^http:\/\/www\.rai\.tv\/.*$/, @@ -146,6 +146,7 @@ function getElementByXPath(query, root) { * @return: null on error, true on success */ function direct_download_link_add(pageURL, site) { + site.pageURL = pageURL var element = getElementByXPath(site.urlContainerXPath); if (!element) { DDL_log('DirectDL (' + site.pageURL + '): Cannot find the element ' + site.urlContainerXPath + ' containing the URL.');