Examine source code of Jobboard Master

Inspect and view changes in Jobboard Master 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
{
  "description": "An extension to help you nail your next remote job",
  "version": "1.0.0",
  "name": "Jobboard Master",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "icon-32.png",
    "120": "icon-120.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://remoteok.io/*",
        "https://weworkremotely.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icon-32.png",
    "icon-120.png"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self';object-src 'self'",
  "applications": {
    "gecko": {
      "id": "martinratinaud@gmail.com_jobboard-master"
    }
  }
}