retire.js

retire.js

Scanning website for vulnerable js libraries

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon48.png",
    "default_name": "retire.js",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "description": "Scanning website for vulnerable js libraries",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "retire.js",
  "permissions": [
    "<all_urls>",
    "webRequest",
    "tabs"
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "version": "1.9.0"
}