GUID Injector

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

Hvad er GUID Injector?

GUID Injector er en Chrome-udvidelse udviklet af https://sites.google.com/site/nyteshade, og dens hovedfunktion er "Creates a unique GUID/UUID and inserts it into a text field".

Udvidelsesskærmbilleder

screenshot

Download GUID Injector-udvidelses-CRX-fil

Download GUID Injector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn GUID Injector GUID Injector
ID fbikgchaodmoekfibbffelacabfjomjb
Officiel URL https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb
Beskrivelse Creates a unique GUID/UUID and inserts it into a text field
Filstørrelse 21.05 KB
Antal Installationer 55
Nuværende Version 2.0
Senest Opdateret 2022-01-11
Udgivelsesdato 2013-02-13
Bedømmelse 1.25/5 Samlet 4 Bedømmelser
Udvikler https://sites.google.com/site/nyteshade
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}