Skip to content

Commit

Permalink
Quick-Update (from Replit)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirhorseyinfo committed Nov 13, 2024
1 parent f664c28 commit 2c6dbb4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ <h1>Unblocked Games</h1>
<button id="lookCanvas">Canvas</button>
<button id="lookDefault">Default</button>
<button id="lookClassroom">Google Classroom</button>
<button id="lookDocs">Google Docs</button>
<script>
document.getElementById('lookClever').addEventListener('click', function() {
// Change the document title
Expand Down Expand Up @@ -88,6 +89,18 @@ <h1>Unblocked Games</h1>
link.href = 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/Google_Classroom_Logo.svg/2372px-Google_Classroom_Logo.svg.png';
document.getElementsByTagName('head')[0].appendChild(link);
});

document.getElementById('lookDocs').addEventListener('click', function() {
// Change the document title
document.title = "Horse Essay - Google Docs";

// Change the favicon
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'icon';
link.href = 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQeUE7BRm2ME_-ppQcgRXQ2EqFh7S9sozIw5g&s';
document.getElementsByTagName('head')[0].appendChild(link);
});
</script>
</body>
</html>

0 comments on commit 2c6dbb4

Please sign in to comment.