Examine source code of WhiteSpots secrets hunter

Inspect and view changes in WhiteSpots secrets hunter 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": "WhiteSpots secrets hunter",
  "version": "2.0",
  "description": "From whitehats with <3",
  "icons": {
    "48": "icons/logo.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "info@whitespots.io",
      "strict_min_version": "48.0"
    }
  },
  "applications": {
    "gecko": {
      "id": "sales@whitespots.io",
      "strict_min_version": "45.0"
    }
  },
  "browser_action": {
    "browser_style": true,
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "icons/logo.png",
      "32": "icons/logo.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "notifications",
    "storage"
  ]
}