Memory Leak Analyzer Firefox

Examine source code of Memory Leak Analyzer

Inspect and view changes in Memory Leak Analyzer source codes across current and past versions
Please login to examine the extension's source code.
manifest.json
{
  "manifest_version": 2,
  "name": "Memory Leak Analyzer",
  "version": "1.0.0",
  "description": "Continuously monitors per-tab memory indicators, detects leaks via anomaly detection, and provides root-cause attribution.",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "storage",
    "alarms",
    "nativeMessaging",
    "notifications",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "shared/constants.js",
      "shared/message-types.js",
      "shared/ring-buffer.js",
      "shared/utils.js",
      "shared/stack-fingerprint.js",
      "background/tab-registry.js",
      "background/anomaly-detector.js",
      "background/native-bridge.js",
      "background/storage-manager.js",
      "background/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "shared/constants.js",
        "shared/message-types.js",
        "shared/stack-fingerprint.js",
        "content/content-messenger.js",
        "content/collectors/dom-collector.js",
        "content/collectors/listener-collector.js",
        "content/collectors/timer-collector.js",
        "content/collectors/detached-dom-collector.js",
        "content/collectors/resource-collector.js",
        "content/collectors/object-collector.js",
        "content/content-main.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png"
    },
    "default_popup": "popup/popup.html",
    "default_title": "Memory Leak Analyzer"
  },
  "sidebar_action": {
    "default_title": "Memory Leak Analyzer",
    "default_panel": "sidebar/sidebar.html",
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "memory-leak-analyzer@firefox.extension",
      "strict_min_version": "140.0",
      "data_collection_permissions": {
        "required": [
          "websiteActivity",
          "browsingActivity"
        ],
        "optional": [
          "technicalAndInteraction"
        ]
      }
    }
  }
}

Best Memory Leak Analyzer Alternatives

Here are some Firefox add-ons that are similar to Memory Leak Analyzer: