Paste 'Lorem ipsum...'

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

Cos'è Paste 'Lorem ipsum...'?

Paste 'Lorem ipsum...' è un'estensione di Chrome sviluppata da [email protected], e la sua funzione principale è "Right click on a text field or textarea to insert the 'lorem ipsum' text.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Paste 'Lorem ipsum...'

Scarica i file di estensione Paste 'Lorem ipsum...' in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
URL Ufficiale https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Descrizione Right click on a text field or textarea to insert the 'lorem ipsum' text.
Dimensione del File 41.1 KB
Conteggio Installazioni 2,730
Versione Corrente 1.0
Ultimo Aggiornamento 2013-08-21
Data di Pubblicazione 2013-08-21
Valutazione 2.05/5 Totale 38 Valutazioni
Sviluppatore [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nwjlyons/lorem-ipsum
URL della Pagina di Aiuto https://github.com/nwjlyons/lorem-ipsum/issues
Lingue Supportate 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"
    }
}