diff --git a/CHANGELOG.md b/CHANGELOG.md index f378c7e..bec3de3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index baea36d..f3bf91d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index 25699c7..2636260 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/test/index.js b/test/index.js index 4ec0c61..9861af7 100644 --- a/test/index.js +++ b/test/index.js @@ -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}` }, diff --git a/webextension/index.js b/webextension/index.js index e13d06c..5e15e05 100644 --- a/webextension/index.js +++ b/webextension/index.js @@ -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') diff --git a/webextension/manifest.json b/webextension/manifest.json index b5e802a..649a309 100644 --- a/webextension/manifest.json +++ b/webextension/manifest.json @@ -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", @@ -57,5 +58,5 @@ "*://workable.com/nr", "*://www.youtube.com/redirect" ], - "version": "8.4.0" + "version": "8.5.0" }