Expander

Expand keywords into full words quickly.

Expanderคืออะไร?

Expander เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jsturtevant และคุณลักษณะหลักของมันคือ "Expand keywords into full words quickly."

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

screenshot

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

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

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

                        This application allows users to create their own shortcut key that will expand a given keyword into full text.  Similar to creating keyword shortcuts on the iPhone or in Word.  Useful in composing emails, text editors, or filling out forms online.

Examples: 
-'ur' expands to 'your'
-'jjb' expands to 'jimmy joe bob'

To use: 
1. Open the option page.
2. Set the keyboard short that will expand the keyword.
3. Set the keyword and the full text.
4. Click Save.
5. In any text box type your key word then use the keyboard shortcut to expand to the full text.

version .9.2 - 3/11/14
   - support for iframes
   - enhanced ui
version .7.1 - 2/10/14
   - added custom css selectors for areas that are not standard text boxes
version .6.13 - 1/30/14
   -fix bug that didn't load options properly
version .6.1 - 1/28/14
   -added ability to have multiple shortcuts
version .5.4 - 1/12/14
   -first release

Open Source: https://github.com/jsturtevant/expander
Report a bug: https://github.com/jsturtevant/expander/issues                    

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

ชื่อ Expander Expander
ID cnodebjakbfgbgpnmfkejfkkdflgkopp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/expander/cnodebjakbfgbgpnmfkejfkkdflgkopp
คำอธิบาย Expand keywords into full words quickly.
ขนาดไฟล์ 293 KB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 0.9.2
อัปเดตครั้งล่าสุด 2014-03-11
วันที่เผยแพร่ 2014-03-11
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา jsturtevant
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.9.2",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Expander",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "bower_components\/mousetrap\/mousetrap.min.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}