
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@stacksleuth/browser-extension
Advanced tools
Comprehensive browser extension for real-time performance monitoring - DevTools integration, content script injection, tab performance tracking, and interactive performance visualization.
Comprehensive browser extension for real-time performance monitoring - DevTools integration, content script injection, tab performance tracking, and interactive performance visualization.
# npm
npm install @stacksleuth/browser-extension
# yarn
yarn add @stacksleuth/browser-extension
# pnpm
pnpm add @stacksleuth/browser-extension
yarn add @stacksleuth/browser-extension
pnpm add @stacksleuth/browser-extension
// manifest.json
{
"manifest_version": 3,
"name": "StackSleuth Performance Monitor",
"version": "1.0.0",
"permissions": ["activeTab", "storage", "webRequest"],
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["stacksleuth-content.js"]
}],
"devtools_page": "devtools.html"
}
// background.js
import { BrowserExtension } from '@stacksleuth/browser-extension';
const extension = new BrowserExtension({
enabled: true,
enableDevTools: true,
trackingDomains: ['*']
});
extension.initialize();
// content-script.js
import { BrowserExtension } from '@stacksleuth/browser-extension';
// Automatically monitor page performance
const extension = new BrowserExtension();
extension.collectPageMetrics();
Agent Not Starting
// Enable debug mode
const agent = new BrowserExtension({
enabled: true,
debug: true
});
High Memory Usage
// Optimize memory usage
const agent = new BrowserExtension({
bufferSize: 500,
flushInterval: 5000,
sampleRate: 0.01
});
Missing Metrics
DEBUG=stacksleuth:* node your-app.js
We welcome contributions! Please see our Contributing Guide for details.
MIT License - see the LICENSE file for details.
Website • Documentation • NPM Registry • GitHub
Made with ⚡ by StackSleuth
FAQs
Comprehensive browser extension for real-time performance monitoring - DevTools integration, content script injection, tab performance tracking, and interactive performance visualization.
We found that @stacksleuth/browser-extension demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.