Examine source code of Live Dev

Inspect and view changes in Live Dev source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Live Dev",
  "version": "1.0",
  "description": "Automatically reload client-side assets without refreshing the page.",
  "icons": {
    "48": "icon.svg"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "page_action": {
    "default_icon": "icon.svg",
    "default_title": "Live Dev",
    "show_matches": [
      "<all_urls>"
    ]
  },
  "background": {
    "scripts": [
      "main.js"
    ]
  }
}