String Generator
Generate random strings of specified length.
Was ist String Generator?
String Generator ist eine Chrome-Erweiterung, die von Arthur Manasyan entwickelt wurde, und ihr Hauptmerkmal ist "Generate random strings of specified length.".
Erweiterungsscreenshots
String Generator-Erweiterungs-CRX-Datei herunterladen
Laden Sie String Generator-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
The extension generates random string for provided length from lowercase English letters which can be used to test field validation. After generating the string it is copied to clipboard so you can just paste to your application under test. For strings longer than 10 characters length is populated at the start of the string. End of the string is marked with '_e' - after you paste the string in a test field, this end mark will indicate whether the string was truncated or not.
Grundlegende Informationen zur Erweiterung
Name | |
ID | bjldlhbmmfjfmkhgkclafnadmofhpajd |
Offizielle URL | https://chrome.google.com/webstore/detail/string-generator/bjldlhbmmfjfmkhgkclafnadmofhpajd |
Beschreibung | Generate random strings of specified length. |
Dateigröße | 42.08 KB |
Installationsanzahl | 80 |
Aktuelle Version | 1.1 |
Letztes Update | 2020-07-08 |
Veröffentlichungsdatum | 2019-07-20 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Arthur Manasyan |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "String Generator", "description": "Generate random strings of specified length.", "version": "1.1", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |