Live Reload — monitor and reload html, css, js

Live Reload — monitor and reload html, css, js

Addon for web devs. Monitor included JS, CSS and/or HTML in frames and automatically reload the host page when a change is detected in the included source. Supports inline reloading of stylesheets and frames without reloading the host page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Live Reload",
  "version": "1.8.4",
  "description": "Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.",
  "homepage_url": "https://github.com/blaise-io/live-reload#readme",
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "webNavigation",
    "webRequest"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "/background.js"
    ]
  },
  "icons": {
    "128": "/icons/icon.png"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": "/icons/icon.png",
    "default_popup": "/popup.html"
  },
  "options_ui": {
    "page": "/options.html",
    "browser_style": true
  }
}