internet_mapper_viewer/browser/popup/inject.js
2024-12-13 11:00:51 -07:00

14 lines
241 B
JavaScript

let anchor = document.getElementById('anchor');
if (anchor) {
window.fetch(anchor.innerText)
.then(res => res.text())
.then((body) => {
document.body.textContent = "";
document.body.innerHTML = body;
})
}