Random Word Paste

Random word generator

Random Word Paste क्या है?

Random Word Paste Nikita Okhrimenko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Random word generator"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Random Word Paste एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Random Word Paste Random Word Paste
ID aahabkdhoefkfgkjddeikgajoijpgchm
आधिकारिक URL https://chromewebstore.google.com/detail/random-word-paste/aahabkdhoefkfgkjddeikgajoijpgchm
विवरण Random word generator
फ़ाइल का आकार 11.86 KB
स्थापना संख्या 24
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2021-03-17
प्रकाशन तिथि 2021-03-16
डेवलपर Nikita Okhrimenko
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
        }
    ]
}