Skip to content

Commit

Permalink
v8.8.0 - 2022-06-01
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Feb 17, 2023
1 parent d4b07cf commit ee7f698
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 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

## v8.8.0 - 2022-06-01
- Add `linkedin.com`

## v8.7.0 - 2022-05-04
- Add `facebook.com`
- Add `redirect.epicgames.com`
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ This extension does not modify any of the pages that you visit. Its sole purpose
- r.klar.na
- www.kraken.com
- t.lever-analytics.com
- www.linkedin.com
- l.messenger.com
- outgoing.prod.mozaws.net
- onlyfans.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.7.0",
"version": "8.8.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"main": "webextension/index.js",
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const urls = [
{ url: `https://r.klar.na/?to=${encodedURL}` },
{ url: `https://www.kraken.com/redirect?url=${encodedURL}` },
{ url: `https://t.lever-analytics.com/email-link?dest=${encodedURL}` },
{ url: `https://www.linkedin.com/safety/go?url=${encodedURL}` },
{ url: `https://l.messenger.com/l.php?u=${encodedURL}` },
{ url: `https://outgoing.prod.mozaws.net/v1/08aa3089688d4b6ec460e6c402e78eba305c36fb81287197e4ae3f5a5c60f22d/${encodedURL}` },
// https://github.com/bjornstar/intercept-redirect/issues/22
Expand Down
4 changes: 4 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ const sites = {
't.lever-analytics.com': {
'/email-link': searchParam('dest')
},
// 2022-06-01 - https://www.linkedin.com/safety/go?url=https%3A%2F%2Fchoco.com%2Fus%2Fstories%2Flife-at-choco%2Fengineering-managers
'www.linkedin.com': {
'/safety/go': searchParam('url')
},
'l.messenger.com': {
'/l.php': searchParam('u')
},
Expand Down
3 changes: 2 additions & 1 deletion webextension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"*://r.klar.na/",
"*://www.kraken.com/redirect",
"*://t.lever-analytics.com/email-link",
"*://www.linkedin.com/safety/go",
"*://l.messenger.com/l.php",
"*://outgoing.prod.mozaws.net/v1/*",
"*://onlyfans.com/away",
Expand All @@ -62,5 +63,5 @@
"*://workable.com/nr",
"*://www.youtube.com/redirect"
],
"version": "8.7.0"
"version": "8.8.0"
}

0 comments on commit ee7f698

Please sign in to comment.