Give Me Numbers

This extension generates random numbers.

¿Qué es Give Me Numbers?

Give Me Numbers es una extensión de Chrome desarrollada por https://josedacruz.com, y su función principal es "This extension generates random numbers.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Give Me Numbers

Descarga archivos de extensión Give Me Numbers en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Give Me Numbers Give Me Numbers
ID akdhggjanpgjdhfdodjkokfgkjlghoag
URL Oficial https://chromewebstore.google.com/detail/give-me-numbers/akdhggjanpgjdhfdodjkokfgkjlghoag
Descripción This extension generates random numbers.
Tamaño del Archivo 706 KB
Cantidad de Instalaciones 153
Versión Actual 1.0
Última Actualización 2014-10-08
Fecha de Publicación 2014-10-08
Calificación 4.00/5 Total de 2 Calificaciones
Desarrollador https://josedacruz.com
Tipo de Pago free
Idiomas Soportados 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"
    ]
}