GUID Injector

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

Wat is GUID Injector?

GUID Injector is een Chrome-extensie ontwikkeld door https://sites.google.com/site/nyteshade, en de belangrijkste functie is "Creates a unique GUID/UUID and inserts it into a text field".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GUID Injector

Download GUID Injector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam GUID Injector GUID Injector
ID fbikgchaodmoekfibbffelacabfjomjb
Officiële URL https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb
Beschrijving Creates a unique GUID/UUID and inserts it into a text field
Bestandsgrootte 21.05 KB
Aantal Installaties 55
Huidige Versie 2.0
Laatst Bijgewerkt 2022-01-11
Publicatiedatum 2013-02-13
Beoordeling 1.25/5 Totaal 4 Beoordelingen
Ontwikkelaar https://sites.google.com/site/nyteshade
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}