Skip to content

Commit

Permalink
v1.1.0 - 2018-03-22
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Mar 22, 2018
1 parent 3c49c35 commit ccbb2c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions background.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
Expand Down Expand Up @@ -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*',
Expand Down
3 changes: 2 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
Expand All @@ -18,5 +19,5 @@
"https://vk.com/",
"https://www.youtube.com/"
],
"version": "1.0.0"
"version": "1.1.0"
}

0 comments on commit ccbb2c8

Please sign in to comment.