Skip to content

Commit

Permalink
v4.4.0 - 2020-04-13
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Apr 18, 2020
1 parent 162b9e7 commit 8f3ee12
Show file tree
Hide file tree
Showing 6 changed files with 14 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

## v4.4.0 - 2020-04-13
- Add `gcc01.safelinks.protection.outlook.com`

## v4.3.0 - 2020-03-03
- Add `www.javlibrary.com`
- Use arrow functions in `index.js`
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Skip tracking redirects that serve no purpose other than to waste your valuable
- l.instagram.com
- www.javlibrary.com
- l.messenger.com
- gcc01.safelinks.protection.outlook.com
- slack-redir.net
- steamcommunity.com
- twitter.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": "4.3.0",
"version": "4.4.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"main": "webextension/index.js",
"dependencies": {},
Expand Down
1 change: 1 addition & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const urls = [
'https://l.instagram.com/?u=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://www.javlibrary.com/en/redirect.php?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://l.messenger.com/l.php?u=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://gcc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://slack-redir.net/link?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://steamcommunity.com/linkfilter/?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://twitter.com/i/redirect?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
Expand Down
6 changes: 6 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ const sites = {
'/l.php': ['u']
}
},
// 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': {
pathnames: {
'/': ['url']
}
},
'slack-redir.net': {
pathnames: {
'/link': ['url']
Expand Down
3 changes: 2 additions & 1 deletion webextension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"*://l.instagram.com/",
"*://www.javlibrary.com/",
"*://l.messenger.com/",
"*://gcc01.safelinks.protection.outlook.com/",
"*://slack-redir.net/",
"*://steamcommunity.com/",
"*://twitter.com/",
Expand All @@ -36,5 +37,5 @@
"*://workable.com/",
"*://www.youtube.com/"
],
"version": "4.3.0"
"version": "4.4.0"
}

0 comments on commit 8f3ee12

Please sign in to comment.