File size: 470 Bytes
bee6636 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { rewriteUrl } from "../../shared/rewriters/url";
import { ScramjetClient } from "../client";
export default function (client: ScramjetClient, self: Self) {
client.Proxy("Navigator.prototype.registerProtocolHandler", {
apply(ctx) {
ctx.args[1] = rewriteUrl(ctx.args[1], client.meta);
},
});
client.Proxy("Navigator.prototype.unregisterProtocolHandler", {
apply(ctx) {
ctx.args[1] = rewriteUrl(ctx.args[1], client.meta);
},
});
}
|