Random Number Plus

Random Number Plus is an extension with a variety of useful tools in order to provide a quick and accessible way for RNG related…

Что такое Random Number Plus?

Random Number Plus - это расширение Chrome, разработанное matthew.teja, и его основная функция - "Random Number Plus is an extension with a variety of useful tools in order to provide a quick and accessible way for RNG related…".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Random Number Plus

Скачайте файлы расширений Random Number Plus в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Random Number Plus is an extension with a variety of useful tools in order to provide a quick and accessible way for RNG related tasks. 

Functions include coin flips, dice rolls, random card draws, number generators and more!
To use the extension, click the icon and select the function from the drop down menu.                    

Основная информация о расширении

Название Random Number Plus Random Number Plus
ID ciaeedbhghjjfckbpedkgmfjmobpggog
Официальный URL https://chrome.google.com/webstore/detail/random-number-plus/ciaeedbhghjjfckbpedkgmfjmobpggog
Описание Random Number Plus is an extension with a variety of useful tools in order to provide a quick and accessible way for RNG related…
Размер файла 14.58 KB
Количество установок 87
Текущая Версия 0.1
Последнее Обновление 2018-07-12
Дата публикации 2018-07-12
Рейтинг 4.80/5 Всего 5 оценок
Разработчик matthew.teja
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Number Plus",
    "version": "0.1",
    "author": "Matthew Teja",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "short_name": "RNP Generator",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [],
            "css": [
                "popup.css"
            ]
        }
    ]
}