Connection Forwarder

Connection Forwarder

Open source Chromebook app for forwarding connections from/to different ports and interfaces (or to internal android IP)…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnB9deSoKBn546IsYUlJLnzJbwC7vuOXUGMgONTUs0EcvHlDQRdYfNoIJykUZxKzPwEjruQEck+7HXVntgpJPOoVsVdRAkvfiiye+FL7oIt+iFAYDCn+dmQr9YWEA0yquA/YYiLQLlArMwEkZp6SsH3fUOYlVDdNhps2znNjIvH8B9kZK02N2c5NP2lH4obB+iUV0MUP0TIXGkMAUASwVoGpQlmczLJnvBq9etGkru2RE1G5TTntvlfoT9+XHB6QqmlHdLA087tdARQerZS28EKNxWMMXLu60e7ldSAGEZumKI1P+8kfdYDwNcrzpcNH0gyEeiDeU3mH6ml2vYkbR0wIDAQAB",
  "name": "Connection Forwarder",
  "author": "Kyle Graehl",
  "version": "0.0.9",
  "manifest_version": 2,
  "offline_enabled": true,
  "minimum_chrome_version": "60",
  "app": {
    "background": {
      "scripts": [
        "js/config.js",
        "js/common.js",
        "js/third-party/deque.js",
        "js/third-party/promise.filesystem.js",
        "js/third-party/chromise.js",
        "js/reloader.js",
        "js/background.js",
        "js/runtime.js"
      ]
    }
  },
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "system.network",
    "storage"
  ],
  "optional_permissions": [
    "background",
    "notifications"
  ],
  "sockets": {
    "udp": {
      "send": [
        ""
      ],
      "bind": [
        ""
      ],
      "multicastMembership": ""
    },
    "tcp": {
      "connect": [
        ""
      ]
    },
    "tcpServer": {
      "listen": [
        "*:*"
      ]
    }
  }
}