Random Word Paste

Random word generator

What is Random Word Paste?

Random Word Paste is a Chrome extension developed by Nikita Okhrimenko, and its main feature is "Random word generator".

Extension Screenshots

screenshot

Download Random Word Paste Extension CRX File

Download Random Word Paste 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

                        Insert random numbers and words in any input on the site!
Ctrl + Ins - paste random world.
Ctrl + Home - paste random number.                    

Extension Basic Information

Name Random Word Paste Random Word Paste
ID aahabkdhoefkfgkjddeikgajoijpgchm
Official URL https://chromewebstore.google.com/detail/random-word-paste/aahabkdhoefkfgkjddeikgajoijpgchm
Description Random word generator
File Size 11.86 KB
Installation Count 24
Current Version 1.0.0
Last Updated 2021-03-17
Publish Date 2021-03-16
Developer Nikita Okhrimenko
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Word Paste",
    "version": "1.0.0",
    "description": "Random word generator",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "insert-word": {
            "suggested_key": {
                "default": "Ctrl+Insert"
            },
            "description": "Toggle feature foo"
        },
        "insert-number": {
            "suggested_key": {
                "default": "Ctrl+Home"
            },
            "description": "Toggle feature foo"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ]
}