String Generator

Generate random strings of specified length.

Co to jest String Generator?

String Generator to rozszerzenie Chrome opracowane przez Arthur Manasyan, a jego główną funkcją jest „Generate random strings of specified length.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia String Generator

Pobierz pliki rozszerzeń String Generator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa String Generator String Generator
ID bjldlhbmmfjfmkhgkclafnadmofhpajd
Oficjalny URL https://chrome.google.com/webstore/detail/string-generator/bjldlhbmmfjfmkhgkclafnadmofhpajd
Opis Generate random strings of specified length.
Rozmiar pliku 42.08 KB
Liczba instalacji 80
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2020-07-08
Data Publikacji 2019-07-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Arthur Manasyan
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}