Skip to content

Instantly share code, notes, and snippets.

@emielvangoor
Last active May 23, 2025 13:20
Show Gist options
  • Save emielvangoor/dd7a74f779d67f9ba985f01e93fce846 to your computer and use it in GitHub Desktop.
Save emielvangoor/dd7a74f779d67f9ba985f01e93fce846 to your computer and use it in GitHub Desktop.
const floatingDiv = document.createElement('div');
console.info('Tesseract Pro Banner');
// Set the text content
floatingDiv.textContent = "Tesseract Pro (http://www.tesseractpro.io)";
// Style the div to make it float
floatingDiv.style.position = 'fixed';
floatingDiv.style.top = '90px';
floatingDiv.style.left = '65px';
floatingDiv.style.color = 'gray';
floatingDiv.style.backgroundColor = 'white';
floatingDiv.style.border = '1px solid gray';
floatingDiv.style.fontFamily = 'Arial, sans-serif';
floatingDiv.style.fontSize = '8pt'
floatingDiv.style.zIndex = '9999';
// Add the div to the document body
document.body.appendChild(floatingDiv);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment