Review of "Simple net speed" version 27

Details Page Preview

Simply showing network speed. Left click to change modes: 1. Total net speed in bits per second 2. Total net speed in Bytes per second 3. Up & down speed in bits per second 4. Up & down speed in Bytes per second 5. Total of downloaded in Bytes (Right click to reset counter) Middle click to change font size

Extension Homepage
https://github.com/biji/simplenetspeed

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Previous Reviews on this Version

JustPerfection rejected
You cannot do that in init either (init and global scope are the same). You can do this: ```js function byteArrayToString(bytes) { if (global.TextDecoder) { return new TextDecoder().decode(bytes); } return imports.byteArray.toString(bytes); } ```