-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- the extension is now served from chrome-extension://<id>/index.html instead of chrome-extension://<id>/replay/index.html as the service worker registration is no longer needed. - Added check to uninstall old service worker from ./replay/sw.js as new service worker is served from ./bg.js - sw registration removed (unless in embed mode), now registered automatically - CSP disabling allows for PDF text extraction + ruffle to work as before, and still needed for replay - remove brave IPFS support, regular IPFS support via auto-js-ipfs remains, including custom serialization via ipld/car - dependencies: update to latest awp-sw - embed fixes: fix window size, remove dist files from git, use http-server to serve embed page. Fixes #131
- Loading branch information
Showing
20 changed files
with
1,424 additions
and
1,647 deletions.
There are no files selected for viewing
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,2 @@ | ||
* | ||
!.gitignore |
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 was deleted.
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
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.
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
Oops, something went wrong.