This project demonstrates how to build a Chrome extension using React with TypeScript and Webpack. It showcases key features such as interacting with Chrome APIs (storage, contextMenus), testing with Jest and Sinon, and structuring a React app with separation of concerns.
- Capture snippets of text from web pages using a context menu
- View, edit, and delete saved snippets in a popup window triggered by an action button
- Persist snippets using Chrome's storage API
- Interact with the extension using content scripts and background scripts
- Comprehensive testing setup using Jest, Sinon, and sinon-chrome for mocking Chrome API
The first screenshot showcases the popup window with saved snippets and the action button (SC in the top-right corner):
The second screenshot shows the context menu that appears when you right-click on a web page to capture a snippet (this context menu is registered and its events are handled in the background.js
script):
- Download the latest release from the Releases
- Unzip the downloaded ZIP file
- Open Chrome and navigate to
chrome://extensions
- Enable "Developer mode"
- Drag and drop the unzipped folder into the extensions page
-
Clone the repository:
git clone https://github.com/jlumbroso/chrome-extension-text-collector
-
Install dependencies:
cd chrome-extension-text-collector npm install
-
Build the extension:
npm run build
-
Load the extension in Chrome:
- Open Chrome and navigate to
chrome://extensions
- Enable "Developer mode"
- Click "Load unpacked" and select the
dist
directory from the project
- Open Chrome and navigate to
- Right-click on a web page and select "Capture Snippet" from the context menu to save the selected text as a snippet
- Click on the extension icon to open the popup window
- In the popup, you can view, edit, and delete saved snippets
-
Run the development server with hot reloading:
npm run watch
-
Load the unpacked extension in Chrome from the
dist
directory -
Make changes to the source code and the extension will automatically reload
This project follows the Manifest V3 architecture for Chrome extensions. Key components of the architecture include:
manifest.json
: Defines the extension's metadata, permissions, and script configurationsbackground.js
: Runs in the background and handles events and long-running taskscontentScript.js
: Injected into web pages to interact with the DOM and communicate with the background script- Popup window: Displays the extension's user interface when the extension icon is clicked
This extension is built using the latest version of the Chrome extension manifest (Manifest V3). The manifest.json
file defines the extension's properties, permissions, and scripts.
Key aspects of the Manifest V3 configuration include:
manifest_version
: Set to3
to use Manifest V3background
: Specifies the background script as a service workeraction
: Defines the popup HTML filepermissions
: Declares the required permissions for the extension (storage, activeTab, contextMenus)content_scripts
: Specifies the content script to be injected into web pages
The project follows a modular architecture with separation of concerns:
App
: The main component that manages the state and renders theSnippetList
SnippetList
: Renders a list ofSnippetItem
components based on the saved snippetsSnippetItem
: Represents an individual snippet with options to edit and delete
The communication between the extension's scripts is handled as follows:
contentScript.js
: Injected into web pages, captures selected text and sends a message to the background scriptbackground.js
: Listens for messages from the content script, saves snippets to storage, and manages the context menu
The project includes a comprehensive testing setup using Jest, Sinon, and sinon-chrome. The tests cover various aspects of the extension, including component rendering, user interactions, and mocking of Chrome APIs.
To run the tests:
npm run test
To generate a coverage report:
npm run coverage
One of the key aspects of testing a Chrome extension is mocking the Chrome APIs. This project uses the following libraries to achieve this:
- Jest: The test runner and assertion library
- Sinon: A library for creating spies, stubs, and mocks
- sinon-chrome: A collection of pre-built mocks for Chrome APIs
- jest-sinon: An extension for Jest to work seamlessly with Sinon
Here's an example test that demonstrates mocking the Chrome storage API:
it('sets initial state with empty array when snippets key is an empty array in local storage', async () => {
chrome.storage.local.get.withArgs('snippets').yields({ snippets: [] });
render(<App />);
const snippetElements = screen.queryAllByRole('listitem');
expect(snippetElements).toHaveLength(0);
});
In this test, we mock the chrome.storage.local.get
method to return an empty array for the 'snippets' key. This allows us to test how the App
component behaves when there are no saved snippets.
You are welcome to use this repository as a starting point for your own work. The best way to do so is to import the repository into your own GitHub account: You can do so either using the GitHub Importer (recommended) or manually using the command-line.
Here are a few ideas to enhance the functionality of this Chrome extension:
- Support rich formatting
- Implement syntax highlighting when selecting code
- Make it easy to copy a snippet to clipboard
- Add tags or categories to snippets for better organization
- Implement search functionality to filter snippets
- Allow users to export and import snippets as JSON files
- Integrate with a note-taking service or a cloud storage provider
- Add a feature to share snippets with others
The initial setup of this project was based on the tutorial by Harshita Joshi on creating a Chrome extension with React and TypeScript. The corresponding Medium article can be found here.
The project has been extended with additional functionality, testing setup, and documentation. The most difficult part was figuring out the right combination of packages for the testing suite (for instance, I would avoid jest-chrome
, mockzilla
, mockzilla-webextension
, to name but a few).