Examine source code of Certage

Inspect and view changes in Certage 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": "Certage",
  "version": "1.2.0",
  "description": "Show the remaining days/hours for the SSL certificate for any web page.",
  "browser_action": {
    "default_icon": {
      "48": "icons/48_green.png"
    },
    "default_title": "Certage",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "48": "icons/48_green.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}