Skip to content

Commit

Permalink
v4.1.0 - 2019-08-06
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Aug 6, 2019
1 parent 956fd07 commit 8e997f5
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Intercept Redirect

## v4.1.0 - 2019-08-06
- Add soundcloud's `gate.sc`

## v4.0.1 - 2018-10-23
- Make build.sh executable
- Fix image URL in README
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Skip tracking redirects that serve no purpose other than to waste your valuable
- disq.us
- exit.sc
- l.facebook.com
- gate.sc
- www.google.co.jp
- news.url.google.com
- plus.url.google.com
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bjornstar/intercept-redirect",
"version": "4.0.1",
"version": "4.1.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"main": "webextension/index.js",
"dependencies": {},
Expand Down
1 change: 1 addition & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const urls = [
'https://disq.us/url?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect%3AzjHJ9CS7YTS6D6-FWtZRTF8swk4',
'https://exit.sc/?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://l.facebook.com/l.php?u=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://gate.sc/?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://www.google.co.jp/imgres?imgrefurl=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://www.google.co.jp/imgres?imgurl=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://www.google.co.jp/url?q=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
Expand Down
4 changes: 4 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ const sites = {
'/l.php': ['u']
}
},
// 2019-08-06 - https://gate.sc/?url=http%3A%2F%2Ffanlink.to%2FPartial7&token=10fd54-1-1565068249069
'gate.sc': {
pathnames: { '/': ['url'] }
},
'www.google.co.jp': {
pathnames: googlePathnames
},
Expand Down
5 changes: 3 additions & 2 deletions webextension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"*://*.digidip.net/",
"*://disq.us/",
"*://exit.sc/",
"*://l.facebook.com/",
"*://l.facebook.com/",
"*://gate.sc/",
"*://www.google.co.jp/",
"*://news.url.google.com/",
"*://plus.url.google.com/",
Expand All @@ -33,5 +34,5 @@
"*://workable.com/",
"*://www.youtube.com/"
],
"version": "4.0.1"
"version": "4.1.0"
}

0 comments on commit 8e997f5

Please sign in to comment.