Lorem ipsum generator (using keyboard only)

Generates lorem ipsum text. Usage: lorem[number of words];

Lorem ipsum generator (using keyboard only)คืออะไร?

Lorem ipsum generator (using keyboard only) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Žiga Miklič และคุณลักษณะหลักของมันคือ "Generates lorem ipsum text. Usage: lorem[number of words];"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lorem ipsum generator (using keyboard only)

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

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

                        I have tried a couple of Lorem Ipsum generators for Chrome, but always ended up uninstalling them, as they required quite a few mouse click to get the job done.

Till now I usually went to a Lorem Ipsum website and copy pasted the text from there (I know using the extensions would be quicker :P ). But today I decided on making a simple Lorem Ipsum generator that works similar to Emments's generator, as it generates the text when you write: lorem50;

I hope you like my extension. Any comments are appreciated (even criticisms).

HOW TO USE

Input:

lorem[number of words];

Example:
lorem5;

Output:
Lorem ipsum dolor sit amet.


You can specify how many words should be generated right next to the word "lorem". For example, lorem5 will generate a 5-words dummy text.

Note 1: This extension only works on input fields and textareas (this means TinyMCE visual field does not work, but works on the Text view).
Note 2: You can freely hide the icon of this extension, if you have mastered the Lorem ipsum generation.                    

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

ชื่อ Lorem ipsum generator (using keyboard only) Lorem ipsum generator (using keyboard only)
ID ogkidppcbldhebgplkdmepodkbfanndi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lorem-ipsum-generator-usi/ogkidppcbldhebgplkdmepodkbfanndi
คำอธิบาย Generates lorem ipsum text. Usage: lorem[number of words];
ขนาดไฟล์ 64.48 KB
จำนวนการติดตั้ง 3,159
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2013-07-06
วันที่เผยแพร่ 2013-07-06
คะแนน 3.78/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา Žiga Miklič
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lorem ipsum generator (using keyboard only)",
    "version": "1.0.1",
    "description": "Generates lorem ipsum text. Usage: lorem[number of words];",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "name": "Manipulate DOM",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-2.0.2.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}