Library Sniffer

Library Sniffer

Sniff web framework and javascript libraries run on browsing website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "short_name": "__MSG_extShortName__",
  "manifest_version": 2,
  "version": "2.9.1",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "background": {
    "page": "background.html"
  },
  "options_page": "option.html",
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "__MSG_pageActionTitle__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/main.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "js/detector.js"
  ]
}