Examine source code of ProxyBar

Inspect and view changes in ProxyBar 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": "ProxyBar",
  "version": "0.1",
  "author": "Alexander Gushchin",
  "permissions": [
    "proxy",
    "storage"
  ],
  "sidebar_action": {
    "default_icon": {
      "16": "button/image-16.png",
      "32": "button/image-32.png"
    },
    "default_title": "ProxyBar",
    "default_panel": "proxy_sidebar.html",
    "browser_style": true
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "button/image-16.png",
      "32": "button/image-32.png"
    },
    "default_title": "Open ProxyBar",
    "default_area": "navbar"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}