Skip to content

Commit

Permalink
v8.7.0 - 2022-05-04
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed May 4, 2022
1 parent e837a9f commit d4b07cf
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Intercept Redirect

## v8.7.0 - 2022-05-04
- Add `facebook.com`
- Add `redirect.epicgames.com`

## v8.6.0 - 2022-01-02
- Add `c212.net`
- Add `cj.dotomi.com`
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ This extension does not modify any of the pages that you visit. Its sole purpose
- disq.us
- cj.dotomi.com
- console.ebsta.com
- redirect.epicgames.com
- exit.sc
- facebook.com
- l.facebook.com
- lm.facebook.com
- m.facebook.com
Expand Down
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": "8.6.0",
"version": "8.7.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"main": "webextension/index.js",
"devDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ const urls = [
{ url: `https://disq.us/url?url=${redirectUrl}%3AzjHJ9CS7YTS6D6-FWtZRTF8swk4` },
{ url: `https://cj.dotomi.com/links-t/8961927/type/dlg/sid/wtbs_61d0bb4f5c0a800d5c6d18c7/${redirectUrl}`},
{ url: `https://console.ebsta.com/linktracking/track.aspx?linkuri=${encodedURL}` },
{ url: `https://redirect.epicgames.com/en/?redirectTo=${redirectUrl}`},
{ url: `https://exit.sc/?url=${encodedURL}` },
{ url: `https://facebook.com/flx/warn/?u=${encodedURL}` },
{ url: `https://l.facebook.com/l.php?u=${encodedURL}` },
{ url: `https://lm.facebook.com/l.php?u=${encodedURL}` },
{ url: `https://m.facebook.com/flx/warn/?u=${encodedURL}` },
Expand Down
8 changes: 8 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,17 @@ const sites = {
'console.ebsta.com': {
'/linktracking/track.aspx': searchParam('linkuri')
},
// 2022-05-04 - https://redirect.epicgames.com/en/?redirectTo=https%3A%2F%2Ftwitter.com%2FmiHoYoDesktop
'redirect.epicgames.com': {
'/': searchParam('redirectTo')
},
'exit.sc': {
'/': searchParam('url')
},
// 2022-05-04 - https://www.facebook.com/flx/warn/?u=https%3A%2F%2Fplayoverwatch.com%2Fen-us%2Fnews%2F23801625%2Foverwatch-2-pvp-beta-week-1-developer-blog%2F
'facebook.com': {
'/flx/warn/': searchParam('u')
},
// 2020-09-17 - https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.bbc.com%2Ffuture%2Farticle%2F20200622-the-long-term-effects-of-covid-19-infection%3Focid%3Dww.social.link.facebook
'l.facebook.com': {
'/l.php': searchParam('u')
Expand Down
4 changes: 3 additions & 1 deletion webextension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
"*://disq.us/url",
"*://cj.dotomi.com/links-t/*",
"*://console.ebsta.com/linktracking/track.aspx",
"*://redirect.epicgames.com/*",
"*://exit.sc/",
"*://facebook.com/flx/warn/",
"*://l.facebook.com/l.php",
"*://lm.facebook.com/l.php",
"*://m.facebook.com/flx/warn/",
Expand Down Expand Up @@ -60,5 +62,5 @@
"*://workable.com/nr",
"*://www.youtube.com/redirect"
],
"version": "8.6.0"
"version": "8.7.0"
}

0 comments on commit d4b07cf

Please sign in to comment.