* . *
  • About
  • Advertise
  • Privacy & Policy
  • Contact
Wednesday, May 27, 2026
Earth-News
  • Home
  • Business
  • Entertainment

    Jazz Legend and Saxophone Virtuoso Sonny Rollins Passes Away at 95

    Revitalizing Downtown Los Angeles: New Entertainment Zones Aim to Ignite Economic Growth

    ‘The Mandalorian and Grogu’ wastes a potentially brilliant era of ‘Star Wars’ – Space

    ‘Mandalorian and Grogu’ tops charts and ‘Obsession’ grows in second weekend – Scripps News

    From Wall Street to the Gaming World: Penn Entertainment CFO Felicia Hendrix’s Inspiring Journey

    Discover the Amazing New Animal Ambassadors Arriving at Green Briar!

  • General
  • Health
  • News

    Cracking the Code: Why China’s Economic Challenges Aren’t Shaking Markets, Unlike America’s” – Bloomberg

    Trump’s Narrow Window to Spread the Truth About Harris

    Trump’s Narrow Window to Spread the Truth About Harris

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Science
  • Sports
  • Technology

    Airbus Appoints Veneziano as New CEO of US Defense Division

    Pope Leo Sounds Alarm: Artificial Intelligence Could Endanger Humanity

    RBI sets up panel to examine potential of quantum technology in financial sector – TradingView

    How Great Steppe Stayed Connected Before Modern Technology – The Astana Times

    How Human Connection Breaks Through Technology at Focus Art Fair

    Hudson County Schools of Technology Slashes Programs, Leading to 20 Job Losses

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
No Result
View All Result
  • Home
  • Business
  • Entertainment

    Jazz Legend and Saxophone Virtuoso Sonny Rollins Passes Away at 95

    Revitalizing Downtown Los Angeles: New Entertainment Zones Aim to Ignite Economic Growth

    ‘The Mandalorian and Grogu’ wastes a potentially brilliant era of ‘Star Wars’ – Space

    ‘Mandalorian and Grogu’ tops charts and ‘Obsession’ grows in second weekend – Scripps News

    From Wall Street to the Gaming World: Penn Entertainment CFO Felicia Hendrix’s Inspiring Journey

    Discover the Amazing New Animal Ambassadors Arriving at Green Briar!

  • General
  • Health
  • News

    Cracking the Code: Why China’s Economic Challenges Aren’t Shaking Markets, Unlike America’s” – Bloomberg

    Trump’s Narrow Window to Spread the Truth About Harris

    Trump’s Narrow Window to Spread the Truth About Harris

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Science
  • Sports
  • Technology

    Airbus Appoints Veneziano as New CEO of US Defense Division

    Pope Leo Sounds Alarm: Artificial Intelligence Could Endanger Humanity

    RBI sets up panel to examine potential of quantum technology in financial sector – TradingView

    How Great Steppe Stayed Connected Before Modern Technology – The Astana Times

    How Human Connection Breaks Through Technology at Focus Art Fair

    Hudson County Schools of Technology Slashes Programs, Leading to 20 Job Losses

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
No Result
View All Result
Earth-News
No Result
View All Result
Home Technology

Show HN: I made a CLI tool to create web extensions with no build configuration

April 30, 2024
in Technology
Show HN: I made a CLI tool to create web extensions with no build configuration
Share on FacebookShare on Twitter

Plug-and-play, zero-config, cross-browser extension development tool.

Screenshot 2024-03-25 at 13 06 15

Logo

Create cross-browser extensions with no build configuration.

Create A New Extension — How to create a new extension.
Get Started Immediately — Get work done in no time.
I have An Extension – Use only specific parts of Extension.js.

Extension.js is a plug-and-play, zero-config, cross-browser extension development tool with built-in support for TypeScript, WebAssembly, React, and modern JavaScript.

npx extension create my-extension
cd my-extension
npm run dev

A new browser instance will open up with your extension ready for development.

You are done. Time to hack on your extension!

create-a-new-extension.mp4

Kickstart Any Sample from Chrome Extension Samples

Dive right into development by starting with a sample from the Chrome Extension Samples repository. It’s a great way to get acquainted with best practices and save time:

Open your terminal.
Navigate to the directory where you want your project.
Run the command:
npx extension dev
Replace with the name of the sample you wish to use from Chrome Extension Samples.

See the example below where we request the sample page-redder from Google Chrome Extension Samples.

npx extension dev https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/functional-samples/sample.page-redder –browser=edge

chrome-extension-sample-page-redder-on-edge.mp4

Extension.js supports a variety of browsers, including Microsoft Edge. To start an Edge-compatible extension, simply:

Open your terminal.
Navigate to your desired project directory.
Execute:
npx extension dev –browser=edge
Tailor your command by replacing with the specific sample you’re interested in.

See the example below where we request the sample magic8ball from from Google Chrome Extension Samples using Edge as the runtime browser.

npx extension dev https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/api-samples/topSites/magic8ball –browser=edge

chrome-extension-sample-magic8ball-on-edge.mp4

Run Mozilla Add-Ons Using Edge

Bridge the gap between Firefox and Edge by running Mozilla Add-Ons using Edge:

Navigate to your project directory.
Use the command:
npx extension dev –browser=edge –polyfill=true
This will fetch a Mozilla Add-On and adapt it for Edge.

See the example below where we request the sample Apply CSS from MDN WebExtensions Examples using Edge as the runtime browser.

npx extension dev https://github.com/mdn/webextensions-examples/tree/main/apply-css –browser=edge –polyfill=true

mdn-webextensions-examples-apply-css-on-edge.mp4

usage-with-an-existing-extension.mp4

If you have an existing extension which is using a package manager, you can install the Extension.js package and manually create the scripts used to run your extension. See the demo above or follow these instructions to get it done:

Step 1 – Install extension as a devDependency

npm install extension –save-dev

Step 2 – Link your npm scripts with the executable Extension.js commands

{
“scripts”: {
“build”: “extension build”,
“dev”: “extension dev”,
“start”: “extension start”
},
“devDependencies”: {
// …other deps,s
“extension”: “latest”
}
}

Done. You are all set!

To develop the extension, run npm run dev.
To visualize the extension in production mode, run npm run start.
To build the extension in production mode, run npm run build.

Using a specific browser for development

☑️=Likely works but no browser runner support yet.

If you want to target a specific browser, just pass the –browser flag to the dev/start command (based on the list available above), like npx extension dev path/to/extension –browser=edge.

Hint
Pass –browser=”all” to load all available browsers at once.

extension dev –browser=all
Screenshot 2024-03-25 at 13 06 15

MIT (c) Cezar Augusto.

>>> Read full article>>>
Copyright for syndicated content belongs to the linked Source : Hacker News – https://github.com/cezaraugusto/extension.js

Tags: Createextensionstechnology
Previous Post

Autotab (YC S23) Is Hiring Founding Engineers to Build the Digital Robot

Next Post

Bytecode VMs in Surprising Places

Exploring the Impact of Drought Intensity on Suitable Habitat Areas (IMAGE)

May 27, 2026

How Elite Soccer Players Triumph After Pregnancy and Shine Under Pressure

May 27, 2026

Discover the Adorable Tiny Blue Octopus Found Nearly 6,000 Feet Beneath the Galápagos

May 27, 2026

Ismene Boutique brings country lifestyle to Shelter Island – Times of San Diego

May 27, 2026

NJCAA Division III World Series Semifinals Ignite College Baseball Excitement in Johnson City

May 27, 2026

How Tax Policy is Shaping the Future of Our Economy

May 27, 2026

Dermatologists Warn: Think Twice Before Using Indoor Tanning Beds as Melanoma Awareness Month Ends

May 27, 2026

Jazz Legend and Saxophone Virtuoso Sonny Rollins Passes Away at 95

May 26, 2026

Cornyn and Paxton Face Off in High-Stakes Runoff Election Tuesday

May 26, 2026

Airbus Appoints Veneziano as New CEO of US Defense Division

May 26, 2026

Categories

Archives

May 2026
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728293031
« Apr    
Earth-News.info

The Earth News is an independent English-language daily published Website from all around the World News

Browse by Category

  • Business (20,132)
  • Ecology (1,234)
  • Economy (1,257)
  • Entertainment (22,134)
  • General (21,742)
  • Health (10,290)
  • Lifestyle (1,267)
  • News (22,149)
  • People (1,258)
  • Politics (1,276)
  • Science (16,471)
  • Sports (21,753)
  • Technology (16,241)
  • World (1,248)

Recent News

Exploring the Impact of Drought Intensity on Suitable Habitat Areas (IMAGE)

May 27, 2026

How Elite Soccer Players Triumph After Pregnancy and Shine Under Pressure

May 27, 2026
  • About
  • Advertise
  • Privacy & Policy
  • Contact

© 2023 earth-news.info

No Result
View All Result

© 2023 earth-news.info

No Result
View All Result

© 2023 earth-news.info

Go to mobile version