Paste 'Lorem ipsum...'

Right click on a text field or textarea to insert the 'lorem ipsum' text.

Paste 'Lorem ipsum...' là gì?

Paste 'Lorem ipsum...' là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Right click on a text field or textarea to insert the 'lorem ipsum' text.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Paste 'Lorem ipsum...'

Tải xuống các tệp mở rộng Paste 'Lorem ipsum...' 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

                        Works with HTML5 input types. eg. email, url, number.


N.B. This extension doesn't work on input fields which have been added to the page using javascript. For example Tinymce or the Drupal overlay editing interface.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
URL Chính Thức https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Mô tả Right click on a text field or textarea to insert the 'lorem ipsum' text.
Kích Thước Tệp 41.1 KB
Số Lần Cài Đặt 2,730
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-08-21
Ngày Phát Hành 2013-08-21
Đánh Giá 2.05/5 Tổng số 38 Đánh Giá
Nhà Phát Triển [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nwjlyons/lorem-ipsum
URL Trang Trợ Giúp https://github.com/nwjlyons/lorem-ipsum/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paste 'Lorem ipsum...'",
    "description": "Right click on a text field or textarea to insert the 'lorem ipsum' text.",
    "version": "1.0",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.6.4.min.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}