Chromium NetLog dump viewer

Chromium NetLog dump viewer

A standalone WebApp for viewing chrome://net-export NetLog dump files

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chromium NetLog dump viewer",
  "version": "0.2.1",
  "description": "A standalone WebApp for viewing chrome://net-export NetLog dump files",
  "homepage_url": "https://github.com/axifive/netlog-viewer",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    },
    "default_title": "NetLog dump viewer"
  },
  "offline_enabled": true
}