Skip to content

Commit

Permalink
v8.11.0 - 2023-02-26
Browse files Browse the repository at this point in the history
- Add `tiktok.com`
- [package.json] Align with add-on listing
  • Loading branch information
bjornstar committed Feb 26, 2023
1 parent eed33fd commit 979be4c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 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

## v8.11.0 - 2023-02-26
- Add `tiktok.com`
- [package.json] Align with add-on listing

## v8.10.0 - 2023-02-24
- Add `linkedin.com/redir/redirect` (Fixes #50)
- Add `prod.outgoing.prod.webservices.mozgcp.net/v1/` (Fixes #51)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ This extension does not modify any of the pages that you visit. Its sole purpose
- *.safelinks.protection.outlook.com
- slack-redir.net
- steamcommunity.com
- www.tiktok.com
- twitter.com
- t.umblr.com
- vk.com
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bjornstar/intercept-redirect",
"version": "8.10.0",
"version": "8.11.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"main": "webextension/index.js",
"devDependencies": {
Expand All @@ -20,8 +20,11 @@
"url": "git+https://github.com/bjornstar/intercept-redirect.git"
},
"keywords": [
"webextension",
"redirect"
"anti tracker",
"privacy",
"redirect",
"security",
"webextension"
],
"author": "Bjorn Stromberg <bjorn@bjornstar.com>",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ const urls = [
{ url: `https://steamcommunity.com/linkfilter/?url=${encodedURL}` },
// https://github.com/bjornstar/intercept-redirect/issues/12
{ url: 'https://steamcommunity.com/linkfilter/?url=bjornstar.com/intercept-redirect' },
{ url: 'https://www.tiktok.com/link/v2?aid=1988&lang=en&scene=bio_url&target=bjornstar.com%2Fintercept-redirect' },
{ url: `https://twitter.com/i/redirect?url=${encodedURL}` },
{ url: `https://t.umblr.com/redirect?z=${encodedURL}` },
{ url: `https://vk.com/away.php?to=${encodedURL}` },
Expand Down
4 changes: 4 additions & 0 deletions webextension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ const sites = {
'steamcommunity.com': {
'/linkfilter/': searchParam('url')
},
// 2023-02-26 - https://www.tiktok.com/link/v2?aid=1988&lang=en&scene=bio_url&target=bjornstar.com%2Fintercept-redirect
'www.tiktok.com': {
'/link/v2': searchParam('target')
},
'twitter.com': {
'/i/redirect': 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 @@ -60,11 +60,12 @@
"*://*.safelinks.protection.outlook.com/",
"*://slack-redir.net/link",
"*://steamcommunity.com/linkfilter/",
"*://www.tiktok.com/link/v2",
"*://twitter.com/i/redirect",
"*://t.umblr.com/redirect",
"*://vk.com/away.php",
"*://workable.com/nr",
"*://www.youtube.com/redirect"
],
"version": "8.10.0"
"version": "8.11.0"
}

0 comments on commit 979be4c

Please sign in to comment.