Bundlephobia Web Extension
Bundlephobia extension to check the size of a package.
什么是Bundlephobia Web Extension?
Bundlephobia Web Extension是由Cristian Bote开发的Chrome扩展程序,该扩展的主要功能是“Bundlephobia extension to check the size of a package.”。
扩展截图
下载Bundlephobia Web Extension扩展crx文件
下载Bundlephobia Web Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a web extension that wraps the super awesome tool, Bundlephobia(https://bundlephobia.com/), with whom you can check the size of a package directly in your browser, without the need to open a new tab, when viewing it on github or npmjs.
扩展基本信息
名称 | Bundlephobia Web Extension |
ID | dliifhggbnajibohfjcpiedlfjmoneko |
官方URL | https://chromewebstore.google.com/detail/bundlephobia-web-extensio/dliifhggbnajibohfjcpiedlfjmoneko |
简介 | Bundlephobia extension to check the size of a package. |
文件大小 | 14.74 KB |
安装次数 | 161 |
当前版本 | 1.0.1 |
更新时间 | 2018-11-22 |
上架时间 | 2018-11-22 |
评分 | 5.00/5 共1次评分 |
开发者 | Cristian Bote |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bundlephobia Web Extension", "version": "1.0.1", "description": "Bundlephobia extension to check the size of a package.", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": "favicon-32x32.png" }, "permissions": [ "activeTab", "declarativeContent" ], "icons": { "32": "favicon-32x32.png", "256": "icon-256x256.png" } } |