Random Word Paste

Random word generator

Cos'è Random Word Paste?

Random Word Paste è un'estensione di Chrome sviluppata da Nikita Okhrimenko, e la sua funzione principale è "Random word generator".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Random Word Paste

Scarica i file di estensione Random Word Paste in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Random Word Paste Random Word Paste
ID aahabkdhoefkfgkjddeikgajoijpgchm
URL Ufficiale https://chromewebstore.google.com/detail/random-word-paste/aahabkdhoefkfgkjddeikgajoijpgchm
Descrizione Random word generator
Dimensione del File 11.86 KB
Conteggio Installazioni 24
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-03-17
Data di Pubblicazione 2021-03-16
Sviluppatore Nikita Okhrimenko
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}