Random Word Paste

Random word generator

Random Word Paste là gì?

Random Word Paste là một tiện ích mở rộng Chrome được phát triển bởi Nikita Okhrimenko, và tính năng chính của nó là "Random word generator".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Random Word Paste

Tải xuống các tệp mở rộng Random Word Paste dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Random Word Paste Random Word Paste
ID aahabkdhoefkfgkjddeikgajoijpgchm
URL Chính Thức https://chromewebstore.google.com/detail/random-word-paste/aahabkdhoefkfgkjddeikgajoijpgchm
Mô tả Random word generator
Kích Thước Tệp 11.86 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-03-17
Ngày Phát Hành 2021-03-16
Nhà Phát Triển Nikita Okhrimenko
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}