Examine source code of Proper

Inspect and view changes in Proper 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": "Proper",
  "short_name": "Proper",
  "description": "The pain-free way to coordinate property maintenance",
  "author": "Proper",
  "version": "1.0.0",
  "icons": {
    "128": "img/logo.png"
  },
  "browser_action": {
    "default_icon": {
      "38": "img/logo.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "popup.html",
    "popup.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "notifications",
    "<all_urls>"
  ]
}