Skip to content

Commit

Permalink
v5.2.0 - 2020-05-04
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed May 4, 2020
1 parent e4f0529 commit 98ed4d4
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Intercept Redirect

## v5.2.0 - 2020-05-04
- Add support for `www.googleadservices.com` (Fixes #17)
- Improve messaging for Opera

## v5.1.2 - 2020-04-28
- Actually de-emphasize the Chrome Web Store in the README

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Skip tracking redirects that serve no purpose other than to waste your valuable
- news.url.google.com
- plus.url.google.com
- www.google.com
- www.googleadservices.com
- l.instagram.com
- www.javlibrary.com
- l.messenger.com
Expand All @@ -41,7 +42,7 @@ Mozilla has been very responsive and new versions are available immediately on t

### Opera
https://intercept-redirect.opera.bjornstar.com
Opera has been struggling to get extensions reviewed and it may take over a week for a new version to be published.
Generally available within a few days of a new release.

### Google Chrome
https://intercept-redirect.chrome.bjornstar.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": "5.1.2",
"version": "5.2.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 @@ -28,6 +28,7 @@ const urls = [
'https://www.google.com/imgres?imgurl=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://www.google.com/url?q=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://www.google.com/url?url=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'https://www.googleadservices.com/pagead/aclk?adurl=https%3A%2F%2Fbjornstar.com%2Fintercept-redirect',
'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',
Expand Down
4 changes: 4 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ const sites = {
'/url': searchParam('url')
},
'www.google.com': googlePathnames,
//https://www.googleadservices.com/pagead/aclk?adurl=https://www.qoo10.jp/gmkt.inc/goods/goods.aspx%3Fgoodscode%3D765396631%26jaehuid%3D2026058773
'www.googleadservices.com': {
'/pagead/aclk': searchParam('adurl')
},
'l.instagram.com': {
'/': 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 @@ -25,6 +25,7 @@
"*://news.url.google.com/",
"*://plus.url.google.com/",
"*://www.google.com/",
"*://www.googleadservices.com/",
"*://l.instagram.com/",
"*://www.javlibrary.com/",
"*://l.messenger.com/",
Expand All @@ -38,5 +39,5 @@
"*://workable.com/",
"*://www.youtube.com/"
],
"version": "5.1.2"
"version": "5.2.0"
}

0 comments on commit 98ed4d4

Please sign in to comment.