Newtab Config Stylelint

Replaces your new tab page with a simple page.

Runs on Chrome, Edge, Firefox · Manifest V3 · Surfaces: new tab, background service worker · Styling: Sass

Create this project

npx extension@latest create my-new-config-stylelint --template new-config-stylelint
cd my-new-config-stylelint
npm install
npm run dev

!Powered by Extension.js

JavaScript New Tab Example

Replaces your new tab page with a simple page.

What you'll see: A custom new-tab page replacing the browser default.

How it works: The manifest overrides the new-tab page and loads a JavaScript entry bundled from src/newtab/. Styles flow through Sass.

Includes a Stylelint config so CSS / SCSS / LESS files stay consistent across editors and CI.

Try it locally

npx extension@latest create my-new-config-stylelint --template new-config-stylelint
cd my-new-config-stylelint
npm install
npm run dev

A fresh browser window opens with the extension already loaded.

Project layout

src/
├── images/
│   └── icon.png
├── newtab/
│   ├── index.html
│   ├── scripts.js
│   └── styles.scss
├── background.js
└── manifest.json

Commands

Cloned this repo instead? The examples ship without npm scripts, so run Extension.js directly from the example directory. Run npm install first when the example declares dependencies.

dev

Run the extension in development mode. Target a browser with --browser:

npx extension@latest dev .                  # Chromium (default)
npx extension@latest dev . --browser=chrome
npx extension@latest dev . --browser=edge
npx extension@latest dev . --browser=firefox

build

Build for production:

npx extension@latest build .                # Chromium (default)
npx extension@latest build . --browser=firefox
npx extension@latest build . --browser=edge

preview

Preview the production build with the bundled browser:

npx extension@latest preview .

Tests

This template ships an end-to-end check (template.spec.ts) validated by the examples-repo CI on every commit.

Learn more

extension.devDocumentation for extension.dev