LiveReload++

LiveReload++

Watches a port and reloads the page if needed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LiveReload++",
  "description": "Watches a port and reloads the page if needed.",
  "version": "0.0.2",
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "128": "images/icon-inactive.png"
    },
    "default_title": "Livereload"
  },
  "background": {
    "scripts": [
      "scripts/eventPage.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "tabs"
  ]
}