Examine source code of Workspaces+

Inspect and view changes in Workspaces+ 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": "Workspaces+",
  "version": "1.2.0",
  "description": "Organize your tabs into workspaces. This extension is a fork of Tab Workspaces by Alejandro Alfonso (fonse).",
  "icons": {
    "48": "icons/container-site-d-48.png",
    "96": "icons/container-site-d-96.png"
  },
  "homepage_url": "https://www.github.com/jahangir1x/workspaces",
  "permissions": [
    "cookies",
    "menus",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/container-site.svg",
    "default_title": "Workspaces",
    "default_popup": "popup/popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+E"
      },
      "description": "Open workspace list"
    }
  },
  "background": {
    "scripts": [
      "background/util.js",
      "background/backgroundLogic.js",
      "background/workspace.js",
      "background/workspaceStorage.js",
      "background/messageHandler.js"
    ]
  },
  "omnibox": {
    "keyword": "ws"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{cfa7e292-75e4-430e-a4b5-71046e956c35}"
    }
  }
}