Bishop Vulnerability Scanner

Bishop Vulnerability Scanner

Search websites for git repos, exposed config files, and more as you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bishop Vulnerability Scanner",
  "short_name": "Bishop",
  "version": "1.0.12",
  "description": "Search websites for git repos, exposed config files, and more as you browse.",
  "author": "Jack Kingsman <[email protected]>",
  "homepage_url": "https://github.com/jkingsman/bishop",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Bishop",
    "default_icon": {
      "19": "img/bishop19.png",
      "38": "img/bishop38.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/bishop16.png",
    "48": "img/bishop48.png",
    "128": "img/bishop128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "audio/alert.mp3",
    "alert.css"
  ]
}