Web Scan - Web technology lookup

Web Scan - Web technology lookup

Discover the libraries and web technologies in any websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Web Scan - Web technology lookup",
  "short_name": "WebScan - Library detection tool",
  "version": "0.0.1",
  "web_accessible_resources": [
    "detect.js"
  ],
  "description": "Discover the libraries and web technologies in any websites",
  "icons": {
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "WebScan",
    "default_icon": "icons/icon.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle"
    }
  ]
}