IMEI Generator

Generate IMEI (3 types) and write to current active field

Что такое IMEI Generator?

IMEI Generator - это расширение Chrome, разработанное Unknown, и его основная функция - "Generate IMEI (3 types) and write to current active field".

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

screenshot

Скачать файл CRX расширения IMEI Generator

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

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

                        Rather than typing in an IMEI number this extension allows you to right-click and select either 000000000000000, 123456789123789 or generates a random IMEI that conforms to the luhn algorithm.
Options allow you to decide whether you want all options showing or not.
If you only select one option, only this option will show as the main link when you right-click.
Very useful when testing, testing, testing.
v2 - now works with iframes
v3 - cosmetic change                    

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

Название IMEI Generator IMEI Generator
ID bdpdidelhbdjmlfekhpamddfpbgjjpjj
Официальный URL https://chromewebstore.google.com/detail/imei-generator/bdpdidelhbdjmlfekhpamddfpbgjjpjj
Описание Generate IMEI (3 types) and write to current active field
Размер файла 9.64 KB
Количество установок 209
Текущая Версия 0.3
Последнее Обновление 2019-12-02
Дата публикации 2019-12-02
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMEI Generator",
    "description": "Generate IMEI (3 types) and write to current active field",
    "version": "0.3",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "images\/icon.png"
    }
}