Paste 'Lorem ipsum...'

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

Apa itu Paste 'Lorem ipsum...'?

Paste 'Lorem ipsum...' adalah ekstensi Chrome yang dikembangkan oleh [email protected], dan fitur utamanya adalah "Right click on a text field or textarea to insert the 'lorem ipsum' text.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Paste 'Lorem ipsum...'

Unduh file ekstensi Paste 'Lorem ipsum...' dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
URL Resmi https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Deskripsi Right click on a text field or textarea to insert the 'lorem ipsum' text.
Ukuran File 41.1 KB
Jumlah Instalasi 2,730
Versi Saat Ini 1.0
Terakhir Diperbarui 2013-08-21
Tanggal Publikasi 2013-08-21
Penilaian 2.05/5 Total 38 Penilaian
Pengembang [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/nwjlyons/lorem-ipsum
URL Halaman Bantuan https://github.com/nwjlyons/lorem-ipsum/issues
Bahasa yang Didukung 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"
    }
}