Examine source code of SORC'D Web Clipper

Inspect and view changes in SORC'D Web Clipper 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
{
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/ga.js",
      "js/genlib.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Capture and Recall Snippets of Relevant Content important to you!",
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.sorcd.com/*"
    ]
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 2,
  "name": "SORC'D Web Clipper",
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "contextMenus",
    "http://sorcd.com/*",
    "https://www.google-analytics.com/collect",
    "<all_urls>",
    "tabs"
  ],
  "version": "2.3.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}