Awesome Lorem Ipsum Generator & Form Filler

Generate lorem ipsum or other random text, html or numbers to quickly fill your forms.

Awesome Lorem Ipsum Generator & Form Filler란 무엇입니까?

Awesome Lorem Ipsum Generator & Form Filler은(는) Erich Behrens에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate lorem ipsum or other random text, html or numbers to quickly fill your forms."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Awesome Lorem Ipsum Generator & Form Filler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Select an input field on your page, press CTRL+Q, press enter. Done!

You can also use your arrow keys or mouse to play around with the settings and customize the length of the text to insert or generate different values.

This extension uses browsers copy and paste commands to ensure javascript events are triggered and the form is properly handled by the page.

NOTE: the extension is still in development. It already works great and many customization features will be added. You can find the source code at: https://github.com/erichbehrens/aliff


Support for:

- Text: single line text inputs
- Paragraph: multiline, textarea
- HTML: content editable, rich text editors
- Email input
- Number input
- Phone input

Why ALIFF?

As a web developer I sometimes have to fill forms and content pages to test them out. I've tried a few different form fillers and lorem ipsum generators and they usually lack some feature: no support for content editable fields, no html generation, no support for various field types and options are usally limited or complicated. So I've created ALIFF to combine all these features in a single place and make them simple to use.                    

확장 프로그램 기본 정보

이름 Awesome Lorem Ipsum Generator & Form Filler Awesome Lorem Ipsum Generator & Form Filler
ID klapbdjmkdbfdboihdcopnlfdemplphc
공식 URL https://chromewebstore.google.com/detail/awesome-lorem-ipsum-gener/klapbdjmkdbfdboihdcopnlfdemplphc
설명 Generate lorem ipsum or other random text, html or numbers to quickly fill your forms.
파일 크기 363 KB
설치 횟수 688
현재 버전 0.4.0
최근 업데이트 2018-04-01
출시 날짜 2018-04-01
평점 5.00/5 총 5 개의 평점
개발자 Erich Behrens
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/erichbehrens/aliff
개인정보 보호 정책 페이지 URL https://scre.io/privacy-browser-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Awesome Lorem Ipsum Generator & Form Filler",
    "description": "Generate lorem ipsum or other random text, html or numbers to quickly fill your forms.",
    "version": "0.4.0",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "assets\/icon-16.png",
        "128": "assets\/icon-128.png"
    },
    "permissions": [
        "clipboardRead",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Q",
                "mac": "Ctrl+Q",
                "linux": "Ctrl+Q"
            }
        }
    }
}