Paste 'Lorem ipsum...'

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

Wat is Paste 'Lorem ipsum...'?

Paste 'Lorem ipsum...' is een Chrome-extensie ontwikkeld door [email protected], en de belangrijkste functie is "Right click on a text field or textarea to insert the 'lorem ipsum' text.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Paste 'Lorem ipsum...'

Download Paste 'Lorem ipsum...'-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
Officiële URL https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Beschrijving Right click on a text field or textarea to insert the 'lorem ipsum' text.
Bestandsgrootte 41.1 KB
Aantal Installaties 2,730
Huidige Versie 1.0
Laatst Bijgewerkt 2013-08-21
Publicatiedatum 2013-08-21
Beoordeling 2.05/5 Totaal 38 Beoordelingen
Ontwikkelaar [email protected]
Betalingswijze free
Extensiewebsite https://github.com/nwjlyons/lorem-ipsum
Help Pagina-URL https://github.com/nwjlyons/lorem-ipsum/issues
Ondersteunde Talen 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"
    }
}