GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
Was ist GUID Injector?
GUID Injector ist eine Chrome-Erweiterung, die von https://sites.google.com/site/nyteshade entwickelt wurde, und ihr Hauptmerkmal ist "Creates a unique GUID/UUID and inserts it into a text field".
Erweiterungsscreenshots
GUID Injector-Erweiterungs-CRX-Datei herunterladen
Laden Sie GUID Injector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | fbikgchaodmoekfibbffelacabfjomjb | 
| Offizielle URL | https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb | 
| Beschreibung | Creates a unique GUID/UUID and inserts it into a text field | 
| Dateigröße | 21.05 KB | 
| Installationsanzahl | 55 | 
| Aktuelle Version | 2.0 | 
| Letztes Update | 2022-01-11 | 
| Veröffentlichungsdatum | 2013-02-13 | 
| Bewertung | 1.25/5 Insgesamt 4 Bewertungen | 
| Entwickler | https://sites.google.com/site/nyteshade | 
| [email protected] | |
| Zahlungsart | free | 
| Unterstützte Sprachen | 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
}  |  |