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
电子邮箱 [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
        }
    ]
}