Live Reload Browser Page

Live Reload Browser Page

The plugin for live reloading of a browser page during web development.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Live Reload Browser Page",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "The plugin for live reloading of a browser page during web development.",
  "icons": {
    "16": "images/off_19x19_v1.png",
    "32": "images/off_32x32_v1.png",
    "48": "images/off_48x48_v1.png",
    "128": "images/off_128x128_v1.png"
  },
  "options_page": "build/options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "build/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/off_19x19_v1.png",
    "default_popup": "build/index.html"
  },
  "permissions": [
    "storage"
  ]
}