Paste 'Lorem ipsum...'

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

Paste 'Lorem ipsum...'คืออะไร?

Paste 'Lorem ipsum...' เป็นส่วนขยายของ Chrome ที่พัฒนาโดย [email protected] และคุณลักษณะหลักของมันคือ "Right click on a text field or textarea to insert the 'lorem ipsum' text."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Paste 'Lorem ipsum...'

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

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

                        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.                    

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

ชื่อ Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
คำอธิบาย Right click on a text field or textarea to insert the 'lorem ipsum' text.
ขนาดไฟล์ 41.1 KB
จำนวนการติดตั้ง 2,730
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2013-08-21
วันที่เผยแพร่ 2013-08-21
คะแนน 2.05/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/nwjlyons/lorem-ipsum
URL หน้าช่วยเหลือ https://github.com/nwjlyons/lorem-ipsum/issues
ภาษาที่รองรับ 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"
    }
}