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" }