mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-25 06:29:21 +00:00
9 lines
286 B
HTML
9 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>
|
|
|