© 2022 Hashnode
#browsers
Now that we have our Browser extension up and running with Tailwind CSS and Parcel let's look at how we can make it more interactive. You can choose any framework you are familiar with. I decided to g…
Yesterday we made our very first new tab browser extension. However, it was solely powered by plain CSS. This can become super hard to maintain over time, so let's see if we can automate much of it by…
We already looked at our first extension that didn't have a view and a custom theme. Now let's look at how we can make a new tab extension. The idea behind these is that they replace the new tab with …
In the previous article, we looked at creating our very first browser extension. For this article, we'll be looking into making our very first theme as an extension! The process will be very similar b…
CSS selectors target specific HTML elements for styling. This basic example locates all <p> paragraph elements and changes the text color to red: p { color: red; } CSS selectors have become inc…
Browser extensions are a great way of customizing our browser experience. I've already written down my top 10 Chrome extensions for developers. I want to start a small series on browser extensions and…
What does an Extension package contains? An extension consists of a collection of files, packaged for distribution and installation. In this article, we will quickly go through the files that might be…
Where can I install Browser Extensions? Although majority of browsers support Extensions / Add-ons, let's focus on the most commonly used browsers in the market1. Google Chrome Safari Microsoft Edg…
What is a Browser Extension A browser extension1 is a small software module for customizing a web browser. Browsers typically allow a variety of extensions, including user interface modifications, coo…
👨💻: In previous articles, we talked about what the Internet and WWW are and their history, and then we talked about URLs and how the Internet and web work at a very high level. Now we will talk abo…