roxxie-proxy-u-prod 0.2.4 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/dist/assets/index-C8me8aPT.js +3669 -0
- package/dist/assets/inject-B58ufVkG.js +43 -0
- package/embed.js +1 -1
- package/examples/single-page.html +2 -2
- package/package.json +1 -1
- package/runtime/index.html +3 -3
- package/scripts/verify.mjs +2 -2
- package/source/packages/chrome/src/Tab/History.test.ts +30 -0
- package/source/packages/chrome/src/Tab/History.ts +3 -1
- package/source/packages/chrome/src/index.ts +5 -0
- package/source/packages/chrome/src/proxy/history-state.test.ts +82 -0
- package/source/packages/chrome/src/proxy/roxxie.ts +9 -0
- package/source/packages/chrome/src/proxy/scramjet.ts +29 -11
- package/source/packages/inject/src/emulators/history.ts +30 -3
- package/source/packages/roxxie-transport/package.json +1 -1
- package/source/packages/roxxie-transport/src/transport.ts +26 -3
- package/source/packages/scramjet/packages/core/dist/scramjet.js +14 -13582
- package/source/packages/scramjet/packages/core/dist/scramjet.js.map +1 -1
- package/source/packages/scramjet/packages/core/dist/scramjet.mjs +14 -13632
- package/source/packages/scramjet/packages/core/dist/scramjet.mjs.map +1 -1
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.js +14 -13584
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.js.map +1 -1
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.mjs +14 -13634
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.mjs.map +1 -1
- package/source/packages/scramjet/packages/core/dist/types/fetch/user-agent.d.ts +31 -0
- package/source/packages/tracker-protocol/package.json +1 -1
- package/source/packages/tracker-protocol/src/index.ts +6 -1
- package/source/pnpm-lock.yaml +1 -1
- package/standalone.html +2 -2
- package/dist/assets/index-MRhaNu_Q.js +0 -3673
- package/dist/assets/inject-xtH4w5z9.js +0 -43
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# roxxie-proxy-u-prod
|
|
2
2
|
|
|
3
|
-
Production browser assets for Roxxie Proxy U. Version `0.
|
|
3
|
+
Production browser assets for Roxxie Proxy U. Version `0.3.0` is pinned to the
|
|
4
4
|
tracker at `https://100.58.76.81/` and can be embedded without hosting browser
|
|
5
5
|
files on the tracker server.
|
|
6
6
|
|
|
@@ -30,8 +30,8 @@ use the equivalent markup:
|
|
|
30
30
|
<div id="roxxie-browser"></div>
|
|
31
31
|
<script
|
|
32
32
|
defer
|
|
33
|
-
src="https://cdn.jsdelivr.net/npm/roxxie-proxy-u-prod@0.
|
|
34
|
-
integrity="sha384-
|
|
33
|
+
src="https://cdn.jsdelivr.net/npm/roxxie-proxy-u-prod@0.3.0/embed.js"
|
|
34
|
+
integrity="sha384-njIFCNZAx6YwA02XL4JGMzcsiVqHuTRWutGa/G1NzqEe0t0V+gWPNEe0XCTde9Q3"
|
|
35
35
|
crossorigin="anonymous"
|
|
36
36
|
data-roxxie-target="#roxxie-browser"
|
|
37
37
|
></script>
|
|
@@ -40,7 +40,7 @@ use the equivalent markup:
|
|
|
40
40
|
The embed loader creates an iframe for:
|
|
41
41
|
|
|
42
42
|
```text
|
|
43
|
-
https://unpkg.com/roxxie-proxy-u-prod@0.
|
|
43
|
+
https://unpkg.com/roxxie-proxy-u-prod@0.3.0/runtime/index.html
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
The runtime then obtains its network document and workers from the versioned
|
|
@@ -52,8 +52,8 @@ Call the loader manually when more control is needed:
|
|
|
52
52
|
```html
|
|
53
53
|
<div id="roxxie-browser"></div>
|
|
54
54
|
<script
|
|
55
|
-
src="https://cdn.jsdelivr.net/npm/roxxie-proxy-u-prod@0.
|
|
56
|
-
integrity="sha384-
|
|
55
|
+
src="https://cdn.jsdelivr.net/npm/roxxie-proxy-u-prod@0.3.0/embed.js"
|
|
56
|
+
integrity="sha384-njIFCNZAx6YwA02XL4JGMzcsiVqHuTRWutGa/G1NzqEe0t0V+gWPNEe0XCTde9Q3"
|
|
57
57
|
crossorigin="anonymous"
|
|
58
58
|
data-roxxie-auto="false"
|
|
59
59
|
></script>
|