mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-03-13 03:32:46 +01:00
7 lines
170 B
JavaScript
7 lines
170 B
JavaScript
(function(){
|
|
"use strict";
|
|
|
|
document.getElementById("code").textContent = atob(
|
|
document.getElementById("iframe").src.replace("data:text/html;base64,", "")
|
|
);
|
|
}()); |