From a019b6157afa5b6196593654cbc416a233d9521f Mon Sep 17 00:00:00 2001 From: eson Date: Wed, 2 Sep 2020 18:39:21 +0800 Subject: [PATCH] fix: for in to of --- lib/chrome/chrome.js | 9 ++++++--- lib/common.js | 14 ++++++++------ 2 files changed, 14 insertions(+), 9 deletions(-) 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;