From b2b807082f08ffa0d2aea78231ff00ffd6da450f Mon Sep 17 00:00:00 2001 From: Bjorn Stromberg Date: Mon, 23 Apr 2018 22:04:52 +0900 Subject: [PATCH] v1.3.0 - 2018-04-23 --- 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 ce614ba..8dd3e5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Intercept Redirect +## 1.3.0 +- Add `news.url.google.com` + ## 1.2.0 - Reorganize list of sites so each site is listed once - Add gitignore diff --git a/background.js b/background.js index b8b810c..21c2d14 100644 --- a/background.js +++ b/background.js @@ -7,6 +7,10 @@ const sites = { pathname: 'l.php', key: 'u' }, + 'news.url.google.com': { + pathname: 'url', + key: 'url' + }, 'plus.url.google.com': { pathname: 'url', key: 'url' diff --git a/manifest.json b/manifest.json index dfe5e5e..5199cc8 100644 --- a/manifest.json +++ b/manifest.json @@ -9,6 +9,7 @@ "webRequestBlocking", "https://exit.sc/", "https://l.facebook.com/", + "https://news.url.google.com/", "https://plus.url.google.com/", "https://www.google.com/", "https://l.instagram.com/", @@ -19,5 +20,5 @@ "https://vk.com/", "https://www.youtube.com/" ], - "version": "1.2.0" + "version": "1.3.0" }