mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
8 lines
349 B
HTML
8 lines
349 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script>
|
||
|
|
var securityInfoPresent = !!SpecialPowers.wrap(document).docShell.currentDocumentChannel.securityInfo;
|
||
|
|
window.parent.postMessage({status: "protocol",
|
||
|
|
data: location.protocol,
|
||
|
|
securityInfoPresent: securityInfoPresent},
|
||
|
|
"*");
|
||
|
|
</script>
|