From 21efa0714f7d7786f28881fe5b2052dbf4bd0b9a Mon Sep 17 00:00:00 2001 From: Bjorn Stromberg Date: Tue, 24 Apr 2018 09:52:41 +0900 Subject: [PATCH] v1.4.0 - 2018-04-24 --- CHANGELOG.md | 3 +++ background.js | 4 ++++ manifest.json | 3 ++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd3e5f..f4841fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Intercept Redirect +## 1.4.0 +- Add `disq.us` + ## 1.3.0 - Add `news.url.google.com` diff --git a/background.js b/background.js index 21c2d14..5607940 100644 --- a/background.js +++ b/background.js @@ -1,4 +1,8 @@ const sites = { + 'disq.us': { + pathname: 'url', + key: 'url' + }, 'exit.sc': { pathname: '', key: 'url' diff --git a/manifest.json b/manifest.json index 5199cc8..7040711 100644 --- a/manifest.json +++ b/manifest.json @@ -7,6 +7,7 @@ "permissions": [ "webRequest", "webRequestBlocking", + "https://disq.us/", "https://exit.sc/", "https://l.facebook.com/", "https://news.url.google.com/", @@ -20,5 +21,5 @@ "https://vk.com/", "https://www.youtube.com/" ], - "version": "1.3.0" + "version": "1.4.0" }