Random Word Paste

Random word generator

Random Word Pasteとは何ですか?

Random Word PasteはNikita Okhrimenkoによって開発されたChromeの拡張機能で、その主な機能は「Random word generator」です。

拡張機能のスクリーンショット

screenshot

Random Word Paste拡張機能のCRXファイルをダウンロード

Random Word Paste拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
        }
    ]
}