DEV Community

Cover image for How to Build a Chrome Extension
Sunil Aleti
Sunil Aleti

Posted on • Updated on

How to Build a Chrome Extension

Chrome extensions are small HTML, CSS and JavaScript apps that we can install in the chrome browser.

In this tutorial, We are going to build an extension that allows users to get covid19 case details based on the country selected.



h8znwg5mm0a1ax96ge0p.jpg

Step 1: Create a new directory "dist" and create files under that directory as shown in the picture

screely-1604097689947.png

Step 2: Create an HTML file

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Covid 19</title>
    <link rel="stylesheet" href="./style.css" />
    <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
    <script type="text/javascript" src="index.js" defer></script>
  </head>
  <body>
    <div class="header">Covid 19</div>
    <div class="container">
    <form class="form-data" autocomplete="on">
      <div class="enter-country">
        <b>Enter a country name:</b>
      </div>
      <div>
        <input type="text" class="country-name" />
      </div><br>
      <button class="search-btn">Search</button>
    </form>
    <div class="result">
      <div class="loading">loading...</div>
      <div class="errors"></div>
      <div class="data"></div>
      <div class="result-container">
        <p><strong>New cases: </strong><span class="todayCases"></span></p>
        <p><strong>New deaths: </strong><span class="todayDeaths"></span></p>
        <p><strong>Total cases: </strong><span class="cases"></span></p>
        <p><strong>Total recovered: </strong> <span class="recovered"></span></p>
        <p><strong>Total deaths: </strong><span class="deaths"></span></p>
        <p><strong>Total tests: </strong><span class="tests"></span></p>
        <center><span class="safe">Stay Safe and Healthy</span></center>
      </div>
    </div>
  </div>
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

Step 3: Create a js file to handle API calls

const api = "https://coronavirus-19-api.herokuapp.com/countries";
const errors = document.querySelector(".errors");
const loading = document.querySelector(".loading");
const cases = document.querySelector(".cases");
const recovered = document.querySelector(".recovered");
const deaths = document.querySelector(".deaths");
const tests=document.querySelector(".tests");
const todayCases=document.querySelector(".todayCases");
const todayDeaths=document.querySelector(".todayDeaths");
const results = document.querySelector(".result-container");
results.style.display = "none";
loading.style.display = "none";
errors.textContent = "";
// grab the form
const form = document.querySelector(".form-data");
// grab the country name
const country = document.querySelector(".country-name");

// declare a method to search by country name
const searchForCountry = async countryName => {
  loading.style.display = "block";
  errors.textContent = "";
  try {
    const response = await axios.get(`${api}/${countryName}`);
    if(response.data ==="Country not found"){ throw error;  }
    loading.style.display = "none";
    todayCases.textContent = response.data.todayCases;
    todayDeaths.textContent = response.data.todayDeaths;
    cases.textContent = response.data.cases;
    recovered.textContent = response.data.recovered;
    deaths.textContent = response.data.deaths;
    tests.textContent =  response.data.totalTests;
    results.style.display = "block";
  } catch (error) {
    loading.style.display = "none";
    results.style.display = "none";
    errors.textContent = "We have no data for the country you have requested.";
  }
};

// declare a function to handle form submission
const handleSubmit = async e => {
  e.preventDefault();
  searchForCountry(country.value);
  console.log(country.value);
};

form.addEventListener("submit", e => handleSubmit(e));
Enter fullscreen mode Exit fullscreen mode

We have an asynchronous function called searchForCountry and within that function, we can use async-await. Async await allows us to stop executing code that is dependent, while we wait for the response from a server. By using the await keyword in front of a piece of code we can get the rest of our code to stop executing while that piece of code executes.

In this example, we await a response from our GET request before setting that response to our articles variable.

Axios is a very popular JavaScript library you can use to perform HTTP requests, that works in both Browser and Node.js platforms. It supports all modern browsers, including support for IE8 and higher. It is promise-based, and this lets us write async/await code to perform XHR requests very easily.

Here are some endpoints to access data via API

Step 4: You can also add css to your HTML file

Step 5: Create manifest.json and add following code. This is the file that contains information on how Chrome should handle the extension.

{
    "manifest_version": 2,
    "name": "Covid19",
    "version": "1.0.0",
    "description": "Provides the cases details regarding Covid19 with respective to any Country",
    "browser_action": {
      "default_popup": "index.html"
    },
    "icons":{
      "16": "./icons/16covid-19.png",
      "64": "./icons/64covid-19.png",
     "128": "./icons/128covid-19.png"
    },

    "content_security_policy": "script-src 'self' https://unpkg.com ; object-src 'self'"
  }
Enter fullscreen mode Exit fullscreen mode

manifest_version, name and version are important and MUST be declared. The extension must have a manifest_version of 2 to work with the latest Chrome browsers, you can give it whatever name/version you wish.

alt-txt


Adding Extension to Chrome:

Go the Chrome Extensions or you can click on this chrome://extensions to navigate to the extension page.
Once the page is opened, click on load unpacked and locate extension package.

I recently submitted this extension for review and it's pending for approval.

Hope Google approves it :)

2.PNG

Here is the working video of Covid19 Extension

Hope it's useful

A ❀️ would be Awesome 😊

Latest comments (17)

Collapse
 
kemalemin profile image
Subliminal Hash

-1 for axios though πŸ€”

Collapse
 
voarvirayii profile image
voa-rvirayii

would to know the reason. thank you

Collapse
 
simme profile image
Simme

Care to expand on that stance?

Collapse
 
timhuang profile image
Timothy Huang

Excellent! I like this post!

Collapse
 
sunilaleti profile image
Sunil Aleti

Thanks

Collapse
 
manitej profile image
Manitej ⚑

We need a chrome dev account to submit to the store right?

Collapse
 
sunilaleti profile image
Sunil Aleti

yes, registration fee is $5

Collapse
 
3ankur profile image
Ankur V

Very nice πŸ‘

Collapse
 
sunilaleti profile image
Sunil Aleti

Thanks

Collapse
 
blessinghirwa profile image
Blessing Hirwa

This is very cool actually. I was looking for this kind of thing.

Collapse
 
sunilaleti profile image
Sunil Aleti

Thanks

Collapse
 
jonrandy profile image
Jon Randy πŸŽ–οΈ

Why not add the instructions for installing in other browsers too?

Collapse
 
sunilaleti profile image
Sunil Aleti • Edited

For Firefox browser

  1. Create a mozilla account
  2. Click on this link and submit the zip file
  3. You need to fill some details regarding the extension and make sure you don't have any remote code because they may reject your submission as they cause some security issues

btw this extension is live on Mozilla firefox, click here to check out

Collapse
 
jonrandy profile image
Jon Randy πŸŽ–οΈ

Well, that's how to publish it to the website. It's possible to install it without doing that - just like you can with Chrome

Thread Thread
 
sunilaleti profile image
Sunil Aleti

yes

Collapse
 
gmlunesa profile image
Goldy Mariz Lunesa (@gmlunesa)

This is awesome!

Collapse
 
sunilaleti profile image
Sunil Aleti • Edited

Glad you liked!!