Random number generator

Number generator will provide a random number between the two numbers of your choice

Random number generator क्या है?

Random number generator grunbaster द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Number generator will provide a random number between the two numbers of your choice"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Random number generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A random number generator is a handy tool to get a number out of a desired range. You can also use it to generate a random color, a random password, a random name, a random country or a random word.

By clicking on the extension icon, the randomizer page opens, you can set the range for random numbers. For the work extension does not need internet. You can generate a random number by pressing a button or by pressing enter. Just open the random number generator page, set the range of the minimum and maximum values ​​and press the button and the program will generate a number.

 To generate a number, you need:

* Open the generator in a tab or page of any site
* Select the range in which you want to get the result. 
* Press the button "Generate number"                    

एक्सटेंशन की मूल जानकारी

नाम Random number generator Random number generator
ID ninanjeenomfmcihkpoaelaoddaboica
आधिकारिक URL https://chromewebstore.google.com/detail/random-number-generator/ninanjeenomfmcihkpoaelaoddaboica
विवरण Number generator will provide a random number between the two numbers of your choice
फ़ाइल का आकार 1.46 MB
स्थापना संख्या 11,698
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2022-12-27
प्रकाशन तिथि 2019-10-28
रेटिंग 4.71/5 कुल 49 रेटिंग्स
डेवलपर grunbaster
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://policy-extension.site/policy_package_tracker.html
समर्थित भाषाएँ de,en,fr,tr,es,it,pl,pt-PT,ru,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.1.3",
    "name": "__MSG_EXTENSION_NAME__",
    "short_name": "__MSG_EXTENSION_SHORT_NAME__",
    "description": "__MSG_EXTENSION_DESCRIPTION__",
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "img\/icon.png"
    },
    "action": {
        "default_title": "Random",
        "default_icon": {
            "128": "img\/icon.png"
        }
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "scripting"
    ],
    "options_page": "\/dashboard\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "dashboard\/index.html",
                "css\/content.css",
                "img\/icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}