String Generator
Generate random strings of specified length.
Что такое String Generator?
String Generator - это расширение Chrome, разработанное Arthur Manasyan, и его основная функция - "Generate random strings of specified length.".
Снимки экрана расширения
Скачать файл CRX расширения String Generator
Скачайте файлы расширений String Generator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | bjldlhbmmfjfmkhgkclafnadmofhpajd |
Официальный URL | https://chrome.google.com/webstore/detail/string-generator/bjldlhbmmfjfmkhgkclafnadmofhpajd |
Описание | Generate random strings of specified length. |
Размер файла | 42.08 KB |
Количество установок | 80 |
Текущая Версия | 1.1 |
Последнее Обновление | 2020-07-08 |
Дата публикации | 2019-07-20 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Arthur Manasyan |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |