Skip to content

Commit

Permalink
v8.5.0 / 2021-12-29
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Dec 29, 2021
1 parent 3899c0f commit 90e20a3
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.5.0 - 2021-12-29
- Add `r.klar.na`

## v8.4.0 - 2021-11-13
- Add `onlyfans.com`
- Add funding information
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ This extension does not modify any of the pages that you visit. Its sole purpose
- href.li
- l.instagram.com
- www.javlibrary.com
- r.klar.na
- www.kraken.com
- t.lever-analytics.com
- l.messenger.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.4.0",
"version": "8.5.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 @@ -49,6 +49,7 @@ const urls = [
{ url: `https://www.javlibrary.com/en/redirect.php?url=${encodedURL}` },
{ url: `https://www.javlibrary.com/ja/redirect.php?url=${encodedURL}` },
{ url: `https://www.javlibrary.com/tw/redirect.php?url=${encodedURL}` },
{ 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://l.messenger.com/l.php?u=${encodedURL}` },
Expand Down
4 changes: 4 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ const sites = {
'/ja/redirect.php': searchParam('url'),
'/tw/redirect.php': searchParam('url')
},
// 2021-12-29 - https://r.klar.na/?to=https%3A%2F%2Fdisneyworld.disney.go.com%2F&channel=app.klarna.com&source=curatedList
'r.klar.na': {
'/': searchParam('to')
},
// 2020-09-17 - https://www.kraken.com/redirect?url=https%3A%2F%2Fcryptowat.ch%2F
'www.kraken.com': {
'/redirect': searchParam('url')
Expand Down
3 changes: 2 additions & 1 deletion webextension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"*://www.javlibrary.com/en/redirect.php",
"*://www.javlibrary.com/ja/redirect.php",
"*://www.javlibrary.com/tw/redirect.php",
"*://r.klar.na/",
"*://www.kraken.com/redirect",
"*://t.lever-analytics.com/email-link",
"*://l.messenger.com/l.php",
Expand All @@ -57,5 +58,5 @@
"*://workable.com/nr",
"*://www.youtube.com/redirect"
],
"version": "8.4.0"
"version": "8.5.0"
}

0 comments on commit 90e20a3

Please sign in to comment.