Skip to content

Commit

Permalink
v8.13.0 - 2023-10-30
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Oct 30, 2023
1 parent 7ba810e commit f2f9373
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Intercept Redirect

## v8.13.0 - 2023-10-30
- Add `edgeservices.bing.com`
- [README.md] Add github actions badge
- [devDependencies] Update `addons-linter` and `eslint`

## v8.12.0 - 2023-06-25
- Add `toyhou.se`
- Add `app.adjust.com`
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Intercept Redirect Logo](https://raw.githubusercontent.com/bjornstar/intercept-redirect/master/assets/icon-300.png)](https://intercept-redirect.bjornstar.com)

[![Github Badge](https://github.com/bjornstar/intercept-redirect/actions/workflows/nodejs.yml/badge.svg?branch=master)](https://github.com/bjornstar/intercept-redirect/actions/workflows/nodejs.yml)
[![Appveyor](https://ci.appveyor.com/api/projects/status/9qrj76bt914531gg/branch/master?svg=true)](https://ci.appveyor.com/project/bjornstar/intercept-redirect/branch/master)
[![CircleCI](https://circleci.com/gh/bjornstar/intercept-redirect/tree/master.svg?style=svg)](https://circleci.com/gh/bjornstar/intercept-redirect/tree/master)

Expand All @@ -15,6 +16,7 @@ This extension does not modify any of the pages that you visit. Its sole purpose
## Supported Domains
- bhpz.adj.st
- app.adjust.com
- edgeservices.bing.com
- c212.net
- *.curseforge.com
- clickserve.dartsearch.net
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.12.0",
"version": "8.13.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 @@ -17,6 +17,7 @@ const encodedURL = encodeURIComponent(redirectUrl);
const urls = [
{ url: `https://bhpz.adj.st/?adjust_redirect=${encodedURL}` },
{ url: `https://app.adjust.com/jsr?url=${encodedURL}` },
{ url: `https://edgeservices.bing.com/edgesvc/redirect?url=${encodedURL}`},
{ url: `https://c212.net/c/link/?u=${redirectUrl}` },
// curseforge double URI encodes
{ url: `https://wow.curseforge.com/linkout?remoteUrl=${encodeURIComponent(redirectUrl)}` },
Expand Down
4 changes: 4 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ const sites = {
'app.adjust.com': {
'/jsr': searchParam('url')
},
// 2023-10-30 - https://edgeservices.bing.com/edgesvc/redirect?url=https%3A%2F%2Fwww.immigration.gov.tw%2F5475%2F5478%2F141465%2F141469%2F
'edgeservices.bing.com': {
'/edgesvc/redirect': searchParam('url')
},
// 2022-01-02 -- https://c212.net/c/link/?t=0&l=en&o=2997076-1&h=288952320&u=http%3A%2F%2Fcreatorkit.com%2Ftop-nine-best-of-2020&a=CreatorKit.com%2FTopNine
'c212.net': {
'/c/link': 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 @@ -18,6 +18,7 @@
"webRequestBlocking",
"*://bhpz.adj.st/",
"*://app.adjust.com/jsr",
"*://edgeservices.bing.com/edgesvc/redirect",
"*://c212.net/c/link",
"*://*.curseforge.com/linkout",
"*://clickserve.dartsearch.net/link/click",
Expand Down Expand Up @@ -70,5 +71,5 @@
"*://workable.com/nr",
"*://www.youtube.com/redirect"
],
"version": "8.12.0"
"version": "8.13.0"
}

0 comments on commit f2f9373

Please sign in to comment.