npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

electron-devtools-vendor

v2.1.0

Published

<div align="center"> <h2>electron-devtools-vendor</h2> <img alt="MIT" src="https://img.shields.io/github/license/BlackHole1/electron-devtools-vendor?color=9cf&style=flat-square"> <img alt="GitHub repo size" src="https://img.shields.io/github/r

Downloads

510

Readme

Feature

unrecognized manifest key warning

when using this library, you will not see the following warning:

Unrecognized manifest key 'browser_action'.
Unrecognized manifest key 'minimum_chrome_version'.
Unrecognized manifest key 'short_name'.
Unrecognized manifest key 'update_url'.
Permission 'activeTab' is unknown or URL pattern is malformed.
Cannot load extension with file or directory name _metadata. Filenames starting with "_" are reserved for use by the system.

namespace with current repo

it will not download the crx to a directory on the current computer, but will contain the source code of the plugin directly in the node_modules

Don't worry about the size of your project, as you should only use it in a development environment, and even if you need to use it in a formal environment, we have tree snaking to help.

network

because the plugin source code is in node_modules, it will have a greater success rate of downloading.

Install

$ yarn add electron-devtools-vendor -D
// or
$ npm install electron-devtools-vendor -D
// or
$ pnpm add electron-devtools-vendor -D

Usage

const { session } = require("electron");

if (process.env.NODE_ENV === "development") {
    const { REACT_DEVELOPER_TOOLS } = require("electron-devtools-vendor");
    session.defaultSession.loadExtension(REACT_DEVELOPER_TOOLS, {
        allowFileAccess: true,
    });
}

Extension List

| name | import name | hash | | ---------------------- | ------------------------------------------------------------- | ------------------------------------------------------------------------------ | | REACT_DEVELOPER_TOOLS | react-developer-tools | fmkadmapgofadopljbjfkapdkoienihi | | EMBER_INSPECTOR | ember-inspector | bmdblncegkenkacieihfhpjfppoconhi | | VUEJS_DEVTOOLS | vuejs-devtools | nhdogjmejiglipccpnnnanhbledajbpd | | REDUX_DEVTOOLS | redux-devtools | lmhkpmbekcpmknklioeibfkpmmfibljd | | APOLLO_DEVELOPER_TOOLS | apollo-developer-tools | jdkknkkbebbapilgoeccciglkfbmbnfm | | MOBX_DEVTOOLS | mobx-devtools | pfgnfdagidkfgccljigdamigbcnndkod | | JQUERY_DEBUGGER | jquery-debugger | dbhhnnnpaeobfddmlalhnehgclcmjimi | | BACKBONE_DEBUGGER | backbone-debugger | bhljhndlimiafopmmhjlgfpnnchjjbhd |

Add New Extension

# this is example
$ yarn run add fmkadmapgofadopljbjfkapdkoienihi --name react-devtools

Other

Thanks to electron-devtools-installer for the inspiration, it was great but there were a few issues that forced me to develop this project, details can be found at: electron-devtools-installer#200