Random Word Paste

Random word generator

Random Word Pasteคืออะไร?

Random Word Paste เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nikita Okhrimenko และคุณลักษณะหลักของมันคือ "Random word generator"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Random Word Paste

ดาวน์โหลดไฟล์ส่วนขยาย 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
        }
    ]
}