Bundlephobia Web Extension
Bundlephobia extension to check the size of a package.
Hvad er Bundlephobia Web Extension?
Bundlephobia Web Extension er en Chrome-udvidelse udviklet af Cristian Bote, og dens hovedfunktion er "Bundlephobia extension to check the size of a package.".
Udvidelsesskærmbilleder
Download Bundlephobia Web Extension-udvidelses-CRX-fil
Download Bundlephobia Web Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Bundlephobia Web Extension |
ID | dliifhggbnajibohfjcpiedlfjmoneko |
Officiel URL | https://chromewebstore.google.com/detail/bundlephobia-web-extensio/dliifhggbnajibohfjcpiedlfjmoneko |
Beskrivelse | Bundlephobia extension to check the size of a package. |
Filstørrelse | 14.74 KB |
Antal Installationer | 161 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2018-11-22 |
Udgivelsesdato | 2018-11-22 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Cristian Bote |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |