RemoteLiveReload

RemoteLiveReload

Live Reload is a system to automatically reload a web page when the source files for that web page are changed. This extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RemoteLiveReload",
  "version": "0.0.46",
  "background": {
    "scripts": [
      "global.js",
      "global-chrome.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "injected.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "livereload.js"
  ],
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Enable LiveReload",
    "default_icon": {
      "19": "IconDisabled.png",
      "38": "[email protected]"
    }
  }
}