Skip to content

Commit

Permalink
v1.6.0 - 2018-04-24
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Apr 24, 2018
1 parent 9db074d commit c1681c0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 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

## v1.6.0 - 2018-04-24
- Intercept all requests regardless of transport

## v1.5.0 - 2018-04-24
- `disq.us` adds some extraneous data to the url, we need to strip it
- Add dates and `v` to changelog
Expand Down
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const sites = {
};

const urls = Object.keys(sites).map(function(host) {
return `https://${host}/${sites[host].pathname}*`;
return `*://${host}/${sites[host].pathname}*`;
});

chrome.webRequest.onBeforeRequest.addListener(function(request) {
Expand Down
28 changes: 14 additions & 14 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
"permissions": [
"webRequest",
"webRequestBlocking",
"https://disq.us/",
"https://exit.sc/",
"https://l.facebook.com/",
"https://news.url.google.com/",
"https://plus.url.google.com/",
"https://www.google.com/",
"https://l.instagram.com/",
"https://l.messenger.com/",
"https://slack-redir.net/",
"https://steamcommunity.com/",
"https://t.umblr.com/",
"https://vk.com/",
"https://www.youtube.com/"
"*://disq.us/",
"*://exit.sc/",
"*://l.facebook.com/",
"*://news.url.google.com/",
"*://plus.url.google.com/",
"*://www.google.com/",
"*://l.instagram.com/",
"*://l.messenger.com/",
"*://slack-redir.net/",
"*://steamcommunity.com/",
"*://t.umblr.com/",
"*://vk.com/",
"*://www.youtube.com/"
],
"version": "1.5.0"
"version": "1.6.0"
}

0 comments on commit c1681c0

Please sign in to comment.