Network Topology Illustrator

Network Topology Illustrator

An illustrator to draw network topology

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Network Topology Illustrator",
  "author": "AngelaWenjing",
  "version": "0.0.1",
  "description": "An illustrator to draw network topology",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Ctrl+Shift+G",
        "linux": "Ctrl+Shift+G",
        "mac": "Command+Shift+G",
        "windows": "Ctrl+Shift+G"
      },
      "description": "Activate Network Topology Illustrator"
    }
  },
  "permissions": [
    "storage",
    "downloads"
  ]
}