Skip to content

Commit

Permalink
Add zoomgov domains (#9)
Browse files Browse the repository at this point in the history
* Add zoomgov domains

* Add zoomgov to permissions in manifest
  • Loading branch information
pmosbach authored Aug 5, 2020
1 parent 1bf93a0 commit 3ee1a68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ chrome.webRequest.onBeforeRequest.addListener(function(details) {
return {
redirectUrl: url.href
};
}, { urls: ['*://*.zoom.us/j/*', '*://*.zoom.us/s/*'] }, ['blocking']);
}, { urls: ['*://*.zoom.us/j/*', '*://*.zoom.us/s/*', '*://*.zoomgov.com/j/*', '*://*.zoomgov.com/s/*'] }, ['blocking']);
3 changes: 2 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"permissions": [
"webRequest",
"webRequestBlocking",
"*://*.zoom.us/*"
"*://*.zoom.us/*",
"*://*.zoomgov.com/*"
],
"background": {
"scripts": [
Expand Down

0 comments on commit 3ee1a68

Please sign in to comment.