"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > Chrome Extension Boilerplate with Popup Interaction (Manifest V3)

Chrome Extension Boilerplate with Popup Interaction (Manifest V3)

Published on 2024-11-01
Browse:339

The goal

This boilerplate extension provides developers with a starting point for creating their own Chrome extensions using Manifest V3.

What's new

The biggest improvement in this version is the addition of a popup interface. Now, when users click the extension button in the browser's top bar, they're presented with an interactive popup instead of just logging a message to the console.

Features

This boilerplate demonstrates three key extension behaviors:

  1. Before page load: Print a message to DevTools console before the page loads.
  2. After page load: Print a message to DevTools console before the page loads.
  3. Popup interaction: Displays a popup when the user clicks the extension button, allowing for more complex user interactions.

The extension now provides a button within the popup that, when clicked, injects a script into the active tab to modify the DOM and log a message to the console.

Installation

  1. Clone or download the files from github.com/llagerlof/fresh-chrome-extension and place them in a directory.
  2. Open your browser's extension page: chrome://extensions
  3. Enable "Developer mode" in the top right corner.
  4. Click Load Unpacked and select the extension directory.

How to test it

  1. Open any website.
  2. Click the extension button on the browser's top bar. You'll see a popup with a button.
  3. Click the button in the popup labeled "Click this button to add an orange div to the page".
  4. Observe the following changes:
    • An orange div appears at the top of the page with the message "DOM modified!"
    • Open the developer tools (F12) and look at the console. You'll see the message "Action executed from popup!"

Chrome Extension Boilerplate with Popup Interaction (Manifest V3)

This boilerplate provides a solid foundation for building more complex Chrome extensions. Feel free to modify and extend it to suit your specific needs.

Happy coding!

Release Statement This article is reproduced at: https://dev.to/llagerlof/chrome-extension-boilerplate-with-popup-interaction-manifest-v3-3ko5?1 If there is any infringement, please contact [email protected] to delete it
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3