Global Namespace Pollution

Global Namespace Pollution

Detects and graphs the global namespace pollution

Merlin
Additional files are visible only to premium users

manifest.json


{
  "page_action": {
    "default_icon": "icons/icon16.png",
    "default_popup": "src/popup.html",
    "default_title": "View Namespace Pollution"
  },
  "web_accessible_resources": [
    "src/detector.js"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Detects and graphs the global namespace pollution",
  "background": {
    "page": "src/background.html"
  },
  "default_locale": "en",
  "name": "Global Namespace Pollution",
  "permissions": [
    "chrome://favicon/",
    "idle",
    "notifications",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "src/content_script.js"
      ]
    }
  ],
  "manifest_version": 2,
  "version": "0.4"
}