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 là gì?
Awesome Lorem Ipsum Generator & Form Filler là một tiện ích mở rộng Chrome được phát triển bởi Erich Behrens, và tính năng chính của nó là "Generate lorem ipsum or other random text, html or numbers to quickly fill your forms.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Awesome Lorem Ipsum Generator & Form Filler
Tải xuống các tệp mở rộng Awesome Lorem Ipsum Generator & Form Filler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Awesome Lorem Ipsum Generator & Form Filler |
ID | klapbdjmkdbfdboihdcopnlfdemplphc |
URL Chính Thức | https://chromewebstore.google.com/detail/awesome-lorem-ipsum-gener/klapbdjmkdbfdboihdcopnlfdemplphc |
Mô tả | Generate lorem ipsum or other random text, html or numbers to quickly fill your forms. |
Kích Thước Tệp | 363 KB |
Số Lần Cài Đặt | 688 |
Phiên Bản Hiện Tại | 0.4.0 |
Cập Nhật Lần Cuối | 2018-04-01 |
Ngày Phát Hành | 2018-04-01 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Erich Behrens |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/erichbehrens/aliff |
URL Trang Chính Sách Bảo Mật | https://scre.io/privacy-browser-extension |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } } |