Information Gathering

Information Gathering

With this tool you can gather intel on a website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Information Gathering",
  "version": "1.0",
  "description": "With this tool you can gather intel on a website.",
  "minimum_chrome_version": "18",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ]
}