mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
8 lines
286 B
HTML
8 lines
286 B
HTML
<script>
|
|
var url = document.location.href;
|
|
var imageUrl = url.replace(/[/][^/]*$/, "/blue-circle-16x16.png");
|
|
var viewSourceImageUrl = "view-source:" + imageUrl;
|
|
var html = "<iframe src='#url#'></iframe>".replace(/#url#/, viewSourceImageUrl);
|
|
document.write(html);
|
|
</script>
|
|
|