Examine source code of Graspr

Inspect and view changes in Graspr 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",
  "name": "Graspr",
  "version": "1.0.2",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "scripts/helpers/storage.helper.js",
      "scripts/lib/parse-1.6.7.min.js",
      "scripts/lib/jquery.min.js",
      "scripts/background.js",
      "scripts/lib/fbsdk.js",
      "scripts/lib/facebookConnectPlugin.js"
    ]
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon128.png",
    "default_popup": "popup.html",
    "default_title": "Graspr!"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/lib/jquery.min.js",
        "scripts/inject.js"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "tabs"
  ]
}