Examine source code of Chrome Publisher for Salesforce

Inspect and view changes in Chrome Publisher for Salesforce 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome Publisher for Salesforce",
  "description": "Perform Salesforce's Publisher Actions natively in Chrome! No need to be on a salesforce.com page.",
  "version": "0.0.9",
  "icons": {
    "16": "icon-sfdc.png",
    "48": "icon-sfdc.png",
    "128": "icon-sfdc.png"
  },
  "permissions": [
    "https://*.salesforce.com/",
    "identity",
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.built.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon-sfdc.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+0"
      },
      "global": true
    }
  }
}