npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

webpack-target-webextension

v2.1.3

Published

WebExtension plugin for Webpack. Supports code-splitting and dynamic import.

Downloads

45,066

Readme

webpack-target-webextension

npm-version

This webpack 5 plugin (works on rspack!) provides reasonable presets and fixes things that don't work for a Web Extension.

If you are looking for webpack 4 support, please install 0.2.1. Document for 0.2.1.

The list of things we fixed in this plugin:

  • Code splitting (chunk loader)
  • Hot Module Reload
  • Public path

A quick guide

If you are familiar with WebExtension and webpack, this is a quick guide on how to configure this plugin and your manifest.json.

webpack.config.js

module.exports = {
    context: __dirname,
    entry: {
        background: join(__dirname, './src/background/index.js'),
        content: join(__dirname, './src/content-script/index.js'),
        options: join(__dirname, './src/options-page/index.js'),
    },
    output: {
        path: join(__dirname, './dist'),
    },
    plugins: [
        new HtmlPlugin({ filename: 'options.html', chunks: ['options'] }),
        new WebExtension({
            background: { pageEntry: 'background' },
        }),
        new CopyPlugin({
            patterns: [{ from: 'manifest.json' }],
        }),
    ],
}

manifest.json

{
  "manifest_version": 3,
  "name": "Your extension",
  "version": "1.0.0",
  "background": {
    "service_worker": "./background.js"
 },
  // ⚠ Those files can be accessed by normal websites too.
  "web_accessible_resources": [
 {
      "resources": ["/*.js"],
      "matches": ["<all_urls>"]
 },
    // only needed for development (hot module reload)
 {
      "resources": ["/hot/*.js", "/hot/*.json"],
      "matches": ["<all_urls>"]
 }
 ],
  "content_scripts": [
 {
      "matches": ["<all_urls>"],
      "js": ["./content.js"]
 }
 ],
  "permissions": ["scripting"],
  "host_permissions": ["<all_urls>"],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
 }
}

You can also refer to ./examples/react-hmr which is a working project.

How to configure

Code splitting

Content script

To load an async chunk in content scripts, you need to configure the chunk loader.

(default) dynamic import()

Compatibility: at least Firefox 89 and Chrome 63.

To disable this loader, you can set output.environment.dynamicImport to false.

You MUST add your JS files to web_accessible_resources in the manifest.json, otherwise the import() call will fail.

[!WARNING] Adding files to web_accessible_resources allows normal websites to fetch them.


chrome.tabs.executeScript (Manifest V2 only)

This method requires options.background.pageEntry to be configured and options.background.classicLoader is not false (it defaults to true).


chrome.scripting.executeScript (Manifest V3 only)

  • This method will fall back to chrome.tabs.executeScript when there is no chrome.scripting.
  • This method requires "scripting" permission in the manifest.json.
  • This method requires options.background to be configured.
  • This method requires options.background.classicLoader is not false (defaults to true).

Main world content script

You must configure the content script by dynamic import(). You also need to set output.publicPath manually (like chrome-extension://jknoiechepeohmcaoeehjaecapdplcia/, the full URL is necessary).

Background worker (Manifest V3)

[!WARNING] This plugin does not work with "background.type" in manifest.json set to "module" (native ES Module service worker). Tracking issue: #24

Code splitting is supported for background service workers, but it will load all chunks initially. See https://bugs.chromium.org/p/chromium/issues/detail?id=1198822.

To turn off this fix, set options.background.eagerChunkLoading to false. If you turn off this fix, loading an async chunk will be a runtime error.

Hot Module Reload

[!WARNING] It's not possible to support HMR for Manifest V3 background workers.

You will see

"[HMR] Update check failed: NetworkError: Failed to execute 'importScripts' on 'WorkerGlobalScope': The script at 'chrome-extension://...' failed to load."

See https://bugs.chromium.org/p/chromium/issues/detail?id=1198822

[!WARNING] The HMR WebSocket server might be blocked by the Content Security Policy, which prevents the reset of the code from being executed. Please disable HMR if you experience this problem.

This plugin fixes Hot Module Reload and provides reasonable defaults for DevServer. Please set devServer.hot to false to disable HMR support.

To disable this fix, set options.hmrConfig to false.

You need to add *.json to your web_accessible_resources to make HMR work.

Example: Draw UI in the content scripts with React and get React HRM. ./examples/react-hmr

Source map

[!WARNING] No eval based source map is available in Manifest v3.

[!WARNING] DO NOT add unsafe-eval to your CSP in production mode!

To use source maps based on eval, you must use Manifest v2 and have script-src 'self' 'unsafe-eval'; in your CSP (content security policy).

Public path

This plugin fixes the public path whether the output.path is set or not.

Options

options.background

Example:

new WebExtensionPlugin({
  background: { pageEntry: 'background', serviceWorkerEntry: 'background-worker' },
})
export interface BackgroundOptions {
  noDynamicEntryWarning?: boolean
  /**
   * The entry point of the background page.
   */
  pageEntry?: string
  /**
   * The entry point of the service worker.
   */
  serviceWorkerEntry?: string
  /**
   * Only affects Manifest V3.
   *
   * Load all chunks at the beginning
   * to workaround the Chrome bug
   * https://bugs.chromium.org/p/chromium/issues/detail?id=1198822.
   *
   * NOT working for rspack.
   *
   * @defaultValue true
   */
  eagerChunkLoading?: boolean
  /**
   * Add the support code that uses
   * `chrome.scripting.executeScript` (MV3) or
   * `chrome.tabs.executeScript` (MV2) when
   * dynamic import does not work for chunk loading
   * in the content script.
   * @defaultValue true
   */
  classicLoader?: boolean
  /**
   * Add a try-catch wrapper around the entry file of serviceWorkerEntry
   * so if the initial code throws, you can still open the console of it.
   *
   * Does not work in rspack.
   *
   * @defaultValue true
   */
  tryCatchWrapper?: boolean
}

options.hmrConfig

Default value: true

This option provides reasonable defaults for HMR and DevServer.

options.weakRuntimeCheck

If you experienced a compatibility issue with any of the following plugins, please this option:

options.experimental_output

This is an experimental API. API might change at any time. Please provide feedback!

TLDR: How to use this

string

If you don't strictly rely on run_at, set it as the following

export default {
  entry: {
    myContentScript: 'src/contentScript.ts',
  },
  // ...
  plugins: [
    // ...
    new WebExtensionPlugin({
      // ...
      experimental_output: {
        myContentScript: 'cs.js'
      },
    })
  ]
}
{
  // ...
  "content_scripts": [
    {
      "matches": ["..."],
      "js": ["cs.js"]
    }
  ]
}
function

If you cannot use asynchronous loading, set up like below. This setup requires you to have a manifest.json being emitted.

export default {
  entry: {
    myContentScript: 'src/contentScript.ts',
  },
  // ...
  plugins: [
    // ...
    new WebExtensionPlugin({
      // ...
      experimental_output: {
        myContentScript: (manifest, list) => {
          manifest.content_scripts[0].js = list
        }
      },
    })
  ]
}
object
export default {
  entry: {
    background: 'src/background.ts',
  },
  // ...
  plugins: [
    // ...
    new WebExtensionPlugin({
      // ...
      experimental_output: {
        background: {
          file: 'sw.js',
          touch(manifest, file) {
            manifest.background.service_worker = file
          }
        },
      },
    })
  ]
}

Explanation

This is an experimental API. API might change at any time. Please provide feedback!

This option helps the initial chunk loading of content scripts/the background service worker, usually needed when optimization.runtimeChunk or optimization.splitChunks.chunks is used.

This option accepts an object, where the keys are the entry name, and the value is described below.

This option replaces the HTMLWebpackPlugin where the background service worker and content scripts do not use HTML to load files.

If the value is a string (an output file name), for content scripts, it creates an extra entry file to load all initial chunks asynchronously via dynamic import. This asynchronous loading behavior is limited to the platform limit and breaks run_at.

If the value is a string (an output file name), for the background service worker (specified via options.background.serviceWorkerEntry), it creates an extra entry file to load all initial chunks synchronously.

The file name specified MUST NOT be any existing file.

If the value is a function ((manifest: any, chunks: string[]) => void), it requires a "manifest.json" in the emitted files and lets you edit it on the fly to include all the initial chunks. This option does not apply to the background service worker because manifest.json does not accept multiple files.

If the value is an object ({ file: string; touch(manifest: any, file: string): void }), it generates a new file (see the behavior of string above) and provides a callback to edit the manifest.json (see the behavior of function above).

If the value is false, it asserts that this entry does not have more than one initial file, otherwise, it will be a compile error.

If the value is undefined, it silences the warning for the background service worker.

You can also change your configuration to avoid optimization.runtimeChunk or optimization.splitChunks.chunks, in this case, webpack only generates 1 initial file so you don't need this option.

Rspack support

Rspack support is provided as a best effort, please open an issue if you have encountered any problems.

Here are known issues:

  • experimental_output is necessary for chunk splitting.