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
官方網址 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
        }
    ]
}