String Generator

Generate random strings of specified length.

What is String Generator?

String Generator is a Chrome extension developed by Arthur Manasyan, and its main feature is "Generate random strings of specified length.".

Extension Screenshots

screenshot

Download String Generator Extension CRX File

Download String Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name String Generator String Generator
ID bjldlhbmmfjfmkhgkclafnadmofhpajd
Official URL https://chrome.google.com/webstore/detail/string-generator/bjldlhbmmfjfmkhgkclafnadmofhpajd
Description Generate random strings of specified length.
File Size 42.08 KB
Installation Count 80
Current Version 1.1
Last Updated 2020-07-08
Publish Date 2019-07-20
Rating 5.00/5 Total 1 Ratings
Developer Arthur Manasyan
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}