Examine source code of Harvest Extension

Inspect and view changes in Harvest Extension 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": "Harvest",
  "version": "1.0",
  "description": "Havest is a browser extension that constantly works in the background analysing the products you are shopping for. Harvest will suggest alternative sustainable products for anything you are trying to buy",
  "icons": {
    "48": "/assets/harvest-main-logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/js/sample_extension.js"
      ]
    }
  ],
  "permissions": [
    "http://localhost/*",
    "https://harvest-ext.herokuapp.com/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Harvest"
  },
  "web_accessible_resources": [
    "/src/js/*"
  ]
}