{ con" /> { con"/>

Joke Chrome Extension With "Another Joke" Button And Dark Theme

  • By Pratik Thombare
  • Last update: Nov 30, 2022
  • Comments: 0

JokesExtensionforChrome

Screenshots

 

screenshot3

 

New Dark Mode

 

const toggle = document.getElementById("toggle-btn");
toggle.addEventListener("click", () => {
  const body = document.getElementById("body");
  body.classList.toggle("dark");
  const dark_btn = document.getElementById("toggle");
  dark_btn.classList.toggle("uil-sun");
  dark_btn.classList.toggle("uil-moon");
});

Github

https://github.com/pratikt76/JokesExtensionforChrome