GUID Injector

Creates a unique GUID/UUID and inserts it into a text field

Что такое GUID Injector?

GUID Injector - это расширение Chrome, разработанное https://sites.google.com/site/nyteshade, и его основная функция - "Creates a unique GUID/UUID and inserts it into a text field".

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

screenshot

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

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

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

                        This chrome extension will add an item to your right click / context menu when right clicking on a text input field of a web page. Choosing "Generate GUID / UUID" will then generate a unique id and  *replace* the contents of the field with the new id.                    

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

Название GUID Injector GUID Injector
ID fbikgchaodmoekfibbffelacabfjomjb
Официальный URL https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb
Описание Creates a unique GUID/UUID and inserts it into a text field
Размер файла 21.05 KB
Количество установок 55
Текущая Версия 2.0
Последнее Обновление 2022-01-11
Дата публикации 2013-02-13
Рейтинг 1.25/5 Всего 4 оценок
Разработчик https://sites.google.com/site/nyteshade
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GUID Injector",
    "description": "Creates a unique GUID\/UUID and inserts it into a text field",
    "version": "2.0",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "guid_uuid.js"
    },
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tellmewhen.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "uuid.png",
        "48": "uuid_48.png",
        "16": "uuid_16.png"
    },
    "offline_enabled": true
}