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

@kxxxl-front-end/electron-extension-installer

v0.0.2

Published

Install any extension into electron

Downloads

10

Readme

新功能

  • 移除 manifest v3 的报错提示

更新crx脚本

npm run crx

# 执行结果
更新: bhljhndlimiafopmmhjlgfpnnchjjbhd
(node:43821) ExperimentalWarning: Importing JSON modules is an experimental feature. This feature could change at any time
更新: bhljhndlimiafopmmhjlgfpnnchjjbhd 版本 0.4.1 to 0.4.1
更新: bmdblncegkenkacieihfhpjfppoconhi
更新: bmdblncegkenkacieihfhpjfppoconhi 版本 4.9.1 to 4.11.0
更新: fmkadmapgofadopljbjfkapdkoienihi
更新: fmkadmapgofadopljbjfkapdkoienihi 版本 4.27.3 to 5.0.0
更新: ienfalfjdbdpebioblfackkekamfmbnh
更新: ienfalfjdbdpebioblfackkekamfmbnh 版本 1.0.7 to 1.0.11
更新: jdkknkkbebbapilgoeccciglkfbmbnfm
更新: jdkknkkbebbapilgoeccciglkfbmbnfm 版本 4.1.4 to 4.8.0
更新: lmhkpmbekcpmknklioeibfkpmmfibljd
更新: lmhkpmbekcpmknklioeibfkpmmfibljd 版本 3.0.19 to 3.1.6
更新: nhdogjmejiglipccpnnnanhbledajbpd
更新: nhdogjmejiglipccpnnnanhbledajbpd 版本 6.5.0 to 6.6.1
更新:crx.json
更新完成

如何新增extension

  • 本地新增:不用vpn,修改crx.json,添加一个空数据,执行npm run crx
  • 非本地新增:需要能访问Google,直接loadExtensionOptions传递目标extensionhash

Electron Extension Installer

npm Version License

Introduction

This library is a modernized version of electron-devtools-installer. It is tested and works on up to electron v29. Min electron version is v11.

Getting Started

npm i --save electron-extension-installer

Usage

import { installExtension, REACT_DEVELOPER_TOOLS } from "electron-extension-installer";

app.on("ready", async () => {
  await installExtension(REACT_DEVELOPER_TOOLS, {
    loadExtensionOptions: {
      allowFileAccess: true,
    },
    forceDownload: false, // 强制下载,不使用缓存
  });
});