Give Me Numbers

This extension generates random numbers.

What is Give Me Numbers?

Give Me Numbers is a Chrome extension developed by https://josedacruz.com, and its main feature is "This extension generates random numbers.".

Extension Screenshots

screenshot

Download Give Me Numbers Extension CRX File

Download Give Me Numbers extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension generates random numbers between 2 values. A Min value and a Max value. Both Min and Max are inclusive values in the result. 
It is possible to choose the quantity of the numbers to be generated, for instance, like a dice, you can choose numbers between 1 and 6, and if you need 20 numbers, a possible result could be something like:
3 3 5 6 2 1 6 4 1 6 2 1 2 2 4 3 6 5 2 1 (generated by this extension).
The generated numbers follows a uniform distribution. 
The extension uses the chrome storage to keep the chosen values between sessions and browsers in sync.
In future versions I hope to generate number from different distributions like Gaussian, Poisson, Binomial and Exponential.
Hope it can be useful to you. Sometimes we think we don't need something like this, until the day we have it!
Please, use it, be free to return feedback for improvements or reports about something that's not working as expected.                    

Extension Basic Information

Name Give Me Numbers Give Me Numbers
ID akdhggjanpgjdhfdodjkokfgkjlghoag
Official URL https://chromewebstore.google.com/detail/give-me-numbers/akdhggjanpgjdhfdodjkokfgkjlghoag
Description This extension generates random numbers.
File Size 706 KB
Installation Count 153
Current Version 1.0
Last Updated 2014-10-08
Publish Date 2014-10-08
Rating 4.00/5 Total 2 Ratings
Developer https://josedacruz.com
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Give Me Numbers",
    "description": "This extension generates random numbers.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "gmnicon16x16.png",
        "48": "gmnicon48x48.png",
        "128": "gmnicon128x128.png"
    },
    "permissions": [
        "storage"
    ]
}