From ccbb2c8172648c49a23d9727934c49c0d71415a5 Mon Sep 17 00:00:00 2001 From: Bjorn Stromberg Date: Thu, 22 Mar 2018 15:15:50 +0900 Subject: [PATCH] v1.1.0 - 2018-03-22 --- CHANGELOG.md | 8 +++++++- background.js | 4 ++++ manifest.json | 3 ++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f16a49..f17547b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,8 @@ -# 1.0.0 +# Intercept Redirect + +## 1.1.0 +- Add plus.url.google.com +- Update CHANGELOG format + +## 1.0.0 - Initial Release diff --git a/background.js b/background.js index 748b887..39cb494 100644 --- a/background.js +++ b/background.js @@ -5,6 +5,9 @@ const sites = { 'l.facebook.com': function (q) { return q.u; }, + 'plus.url.google.com': function (q) { + return q.url; + }, 'www.google.com': function (q) { return q.url; }, @@ -34,6 +37,7 @@ const sites = { const urls = [ 'https://exit.sc/*', 'https://l.facebook.com/l.php*', + 'https://plus.url.google.com/url*', 'https://www.google.com/url*', 'https://l.instagram.com/*', 'https://l.messenger.com/l.php*', diff --git a/manifest.json b/manifest.json index 8dcb4a8..ecd1394 100644 --- a/manifest.json +++ b/manifest.json @@ -9,6 +9,7 @@ "webRequestBlocking", "https://exit.sc/", "https://l.facebook.com/", + "https://plus.url.google.com/", "https://www.google.com/", "https://l.instagram.com/", "https://l.messenger.com/", @@ -18,5 +19,5 @@ "https://vk.com/", "https://www.youtube.com/" ], - "version": "1.0.0" + "version": "1.1.0" }