Live Server Web Extension

Live Server Web Extension

Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Live Server Web Extension",
  "version": "1.4.0",
  "description": " Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages",
  "icons": {
    "96": "./img/icon.png",
    "128": "./img/icon128.png"
  },
  "author": "Ritwick Dey",
  "short_name": "Live Server Web Extension",
  "homepage_url": "https://github.com/ritwickdey/live-server-web-extension",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "reload.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "./popup/popup.html",
    "default_icon": "./img/icon.png",
    "default_title": "Live Server"
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ]
}