Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
/ crx-livereload Public archive

🧨 Enable automatic hot live reloads for web browser extension development

License

Notifications You must be signed in to change notification settings

iamogbz/crx-livereload

Repository files navigation

Chrome Extension Live Reload

Shamelessly ripped from xpl/crx-hotreload to verify npm imports worked. See xpl/crx-hotreload#9 and last release date.

Build Status Coverage Status NPM Package Dependabot badge

No more manual reloading of unpacked chrome extensions when developing!

Usage

In your manifest.json:

"permissions": ["management", "activeTab"]
  • management allows for reloading the chrome extension (required)
  • activeTab allows for logging status to the current tab (optional)

In your background script:

import "crx-livereload";

Build, watch and see the automagic happen.