Skip to content

Commit

Permalink
v8.4.0 / 2021-11-13 (resolves #35)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Nov 13, 2021
1 parent dae3f6f commit 3899c0f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
custom: "https://paypal.me/bjornstar"
github: bjornstar
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.4.0 - 2021-11-13
- Add `onlyfans.com`
- Add funding information

## v8.3.1 - 2021-11-06
- Fix duplicate entry: 2nd `*://www.google.com/imgres` should have been `*://www.google.se/imgres`
- [Tests] Start using `addons-linter`
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ This extension does not modify any of the pages that you visit. Its sole purpose
- t.lever-analytics.com
- l.messenger.com
- outgoing.prod.mozaws.net
- onlyfans.com
- gcc01.safelinks.protection.outlook.com
- slack-redir.net
- steamcommunity.com
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@bjornstar/intercept-redirect",
"version": "8.3.1",
"version": "8.4.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"main": "webextension/index.js",
"devDependencies": {
"addons-linter": "^4.0.0",
"addons-linter": "^4.1.0",
"eslint": "^8.2.0",
"mocha": "^9.1.3"
},
Expand Down
1 change: 1 addition & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const urls = [
{ url: `https://outgoing.prod.mozaws.net/v1/08aa3089688d4b6ec460e6c402e78eba305c36fb81287197e4ae3f5a5c60f22d/${encodedURL}` },
// https://github.com/bjornstar/intercept-redirect/issues/22
{ url: 'https://outgoing.prod.mozaws.net/v1/08aa3089688d4b6ec460e6c402e78eba305c36fb81287197e4ae3f5a5c60f22d/https%3A//bjornstar.com/intercept-redirect' },
{ url: `https://onlyfans.com/away?url=${encodedURL}` },
{ url: `https://gcc01.safelinks.protection.outlook.com/?url=${encodedURL}` },
{ url: `https://slack-redir.net/link?url=${encodedURL}` },
{ url: `https://steamcommunity.com/linkfilter/?url=${encodedURL}` },
Expand Down
3 changes: 3 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ const sites = {
'outgoing.prod.mozaws.net': {
'/v1/': ({ pathname }) => decode(pickAfterHash(pathname))
},
'onlyfans.com': {
'/away': searchParam('url')
},
// 2020-04-13 - https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.metro.tokyo.lg.jp%2Fenglish%2Findex.html
'gcc01.safelinks.protection.outlook.com': {
'/': 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 @@ -47,6 +47,7 @@
"*://t.lever-analytics.com/email-link",
"*://l.messenger.com/l.php",
"*://outgoing.prod.mozaws.net/v1/*",
"*://onlyfans.com/away",
"*://gcc01.safelinks.protection.outlook.com/",
"*://slack-redir.net/link",
"*://steamcommunity.com/linkfilter/",
Expand All @@ -56,5 +57,5 @@
"*://workable.com/nr",
"*://www.youtube.com/redirect"
],
"version": "8.3.1"
"version": "8.4.0"
}

0 comments on commit 3899c0f

Please sign in to comment.