Socket
Socket
Sign inDemoInstall

chrome-extension-hot-reload

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chrome-extension-hot-reload

hot reloads chrome extension on development, affects popup tabs and options page


Version published
Weekly downloads
23K
decreased by-56.04%
Maintainers
1
Weekly downloads
 
Created
Source

Chrome Extension Hot Reload

This is an npm package that can be imported in background.js and popup.js files to make hot reloading possible in extensions.

Using this package, extensions' popups can be hot reloaded without having to close them!

Special Thanks to xpl since this package is initially based on his/her package crx-hotreload for timestamp retrieval and main ideas.

Install

Install it via npm install --save chrome-extension-hot-reload

Usage

In your background.js script add the following in top

import HotReload from 'chrome-extension-hot-reload';
HotReload.start();

In your popup.js script add the following in top

import HotReload from 'chrome-extension-hot-reload';
HotReload.connect();
You should NOT call connect in options page or content scripts, they should already work automatically if you have called start in background script.

Alternatively, (if you don't want to import both the start & connect scripts in both background and popup files you can import them separately as in below)

import start from 'chrome-extension-hot-reload/dist/start';
start();
import connect from 'chrome-extension-hot-reload/dist/connect';
connect();

Alternatively, if you prefer ES5, you can import the module as in below (all of them should work)

const HotReload = require("chrome-extension-hot-reload");
const start = require("chrome-extension-hot-reload/dist/start");
const connect = require("chrome-extension-hot-reload/dist/connect");

Configuration

In the connect method you can pass an options object to pass custom configurations.

import HotReload from 'chrome-extension-hot-reload';
HotReload.connect({
  // the milliseconds for which the script re-checks for file changes
  // by default, the script re-checks for every 1 second (1000 milliseconds)     
  retryTime: 1000,
  // whether to output popup connect logs (debug logs), by default it is false
  dbg: false
});

Features

  • Doesn't close popup / options page (doesn't force reloads the extension)
  • Using only in background.js is enough for hot reloading options page
  • Can also hot reload popups, using start/connect syntax (even if you do not have a background script, in order to get hot reloading in popups, you should create a background script file in which you call start)
  • Reloads tabs just as crx-hotreload.
  • Doesn't run if the extension is not in development mode just as crx-hotreload.

Keywords

FAQs

Package last updated on 04 Feb 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc