Word Wallet

Paste any hard-to-type words by context menu click, from customized word list. Plus a simple password manager.

Word Walletคืออะไร?

Word Wallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย orleanz และคุณลักษณะหลักของมันคือ "Paste any hard-to-type words by context menu click, from customized word list. Plus a simple password manager."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Word Wallet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This Chrome extensions allows you to paste words from a pre-defined list directly into input fields of webpages, using context menu. Body fields of online emails like Gmail is supported, too.

Useful for hard-to-type / hard-to-spell-correctly words/names, or for exotic symbols like German umlauts on English keyboard.

List of pastable words can be modified in extention settings according to your need.

Also, this extension can be used as Password Manager. If you set a master secret string in its settings, it allows you to generate unique password for every domain and to easily paste them into password field.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Word Wallet Word Wallet
ID pdajfgebhmdfkmmjpbhiokibkdheneil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/word-wallet/pdajfgebhmdfkmmjpbhiokibkdheneil
คำอธิบาย Paste any hard-to-type words by context menu click, from customized word list. Plus a simple password manager.
ขนาดไฟล์ 71.66 KB
จำนวนการติดตั้ง 42
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2015-05-26
วันที่เผยแพร่ 2015-05-26
ผู้พัฒนา orleanz
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Wallet",
    "description": "Paste any hard-to-type words by context menu click, from customized word list. Plus a simple password manager.",
    "version": "1.5",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "md5.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon48.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    }
}