diff --git a/lib/chrome/chrome.js b/lib/chrome/chrome.js index 2f9fa79..74b300b 100644 --- a/lib/chrome/chrome.js +++ b/lib/chrome/chrome.js @@ -1,9 +1,12 @@ var app = {}; chrome.webRequest.onBeforeRequest.addListener(function (e) { - if(e.url.startsWith("https://video-")) { - return {"cancel": true}; - };}, {"urls": ["*://*/*"]}, ["blocking"]); + for(var u of ["https://video-", "https://txvid.vod"]) { + if(e.url.startsWith(u)) { + return {"cancel": true}; + }; + } +}, {"urls": ["*://*/*"]}, ["blocking"]); app.version = function () {return chrome.runtime.getManifest().version}; app.homepage = function () {return chrome.runtime.getManifest().homepage_url}; diff --git a/lib/common.js b/lib/common.js index e6dcfaf..3856bf0 100644 --- a/lib/common.js +++ b/lib/common.js @@ -33,13 +33,15 @@ core.webrequest = { "blocking": {"types": []}, "block": function (e) { - if(e.url.startsWith("https://video-")) { - return {"cancel": true}; - }; + // if(e.url.startsWith("https://video-")) { + // return {"cancel": true}; + // }; - if(e.url.startsWith("https://txvid.vod")) { - return {"cancel": true}; - }; + for(var u of ["https://video-", "https://txvid.vod"]) { + if(e.url.startsWith(u)) { + return {"cancel": true}; + }; + } var ftp = e.url.indexOf("ftp") === 0; var http = e.url.indexOf("http") === 0;