XSSive

XSSive

XSSive is an extension that can be used to detect reflected, and stored XSS vulnerabilities.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "XSSive",
  "description": "XSSive is an extension that can be used to detect reflected, and stored XSS vulnerabilities.",
  "version": "1.0.3",
  "options_page": "options.html",
  "icons": {
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "browser_action": {
    "default_icon": "green_icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>",
    "management",
    "storage"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  }
}