-
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename chrome.browserAction -> chrome.action include ext/bg.js in sw/main.js (addresses #131) move replay root to ./ from ./replay/ dynamically import sw.js from bg.js, use bg.js as service-worker entrypoint ipfs: add Origin header overrides via declarative-net-request rules, also add as permission via brave-ipfs.json rules bump version to 0.10.0
- Loading branch information
Showing
13 changed files
with
111 additions
and
42 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
[ | ||
{ | ||
"id": 10, | ||
"priority": 2, | ||
"action": { | ||
"type": "modifyHeaders", | ||
"requestHeaders": [ | ||
{ "header": "Origin", "operation": "set", "value": "http://localhost:5001" } | ||
] | ||
}, | ||
"condition": { "urlFilter": "localhost:5001", "resourceTypes": ["xmlhttprequest"] } | ||
}, | ||
{ | ||
"id": 1, | ||
"priority": 2, | ||
"action": { | ||
"type": "modifyHeaders", | ||
"requestHeaders": [ | ||
{ "header": "Origin", "operation": "set", "value": "http://localhost:45001" } | ||
] | ||
}, | ||
"condition": { "urlFilter": "localhost:45001", "resourceTypes": ["xmlhttprequest"] } | ||
}, | ||
{ | ||
"id": 2, | ||
"priority": 2, | ||
"action": { | ||
"type": "modifyHeaders", | ||
"requestHeaders": [ | ||
{ "header": "Origin", "operation": "set", "value": "http://localhost:45002" } | ||
] | ||
}, | ||
"condition": { "urlFilter": "localhost:45002", "resourceTypes": ["xmlhttprequest"] } | ||
}, | ||
{ | ||
"id": 3, | ||
"priority": 2, | ||
"action": { | ||
"type": "modifyHeaders", | ||
"requestHeaders": [ | ||
{ "header": "Origin", "operation": "set", "value": "http://localhost:45003" } | ||
] | ||
}, | ||
"condition": { "urlFilter": "localhost:45003", "resourceTypes": ["xmlhttprequest"] } | ||
}, | ||
{ | ||
"id": 4, | ||
"priority": 2, | ||
"action": { | ||
"type": "modifyHeaders", | ||
"requestHeaders": [ | ||
{ "header": "Origin", "operation": "set", "value": "http://localhost:45004" } | ||
] | ||
}, | ||
"condition": { "urlFilter": "localhost:45004", "resourceTypes": ["xmlhttprequest"] } | ||
}, | ||
{ | ||
"id": 5, | ||
"priority": 2, | ||
"action": { | ||
"type": "modifyHeaders", | ||
"requestHeaders": [ | ||
{ "header": "Origin", "operation": "set", "value": "http://localhost:45005" } | ||
] | ||
}, | ||
"condition": { "urlFilter": "localhost:45005", "resourceTypes": ["xmlhttprequest"] } | ||
} | ||
] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters