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)은(는) Žiga Miklič에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates lorem ipsum text. Usage: lorem[number of words];"입니다.

확장 프로그램 스크린샷

screenshot

Lorem ipsum generator (using keyboard only) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
            ]
        }
    ]
}