Paste 'Lorem ipsum...'

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

Hvad er Paste 'Lorem ipsum...'?

Paste 'Lorem ipsum...' er en Chrome-udvidelse udviklet af [email protected], og dens hovedfunktion er "Right click on a text field or textarea to insert the 'lorem ipsum' text.".

Udvidelsesskærmbilleder

screenshot

Download Paste 'Lorem ipsum...'-udvidelses-CRX-fil

Download Paste 'Lorem ipsum...'-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
Officiel URL https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Beskrivelse Right click on a text field or textarea to insert the 'lorem ipsum' text.
Filstørrelse 41.1 KB
Antal Installationer 2,730
Nuværende Version 1.0
Senest Opdateret 2013-08-21
Udgivelsesdato 2013-08-21
Bedømmelse 2.05/5 Samlet 38 Bedømmelser
Udvikler [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/nwjlyons/lorem-ipsum
Hjælpeside-URL https://github.com/nwjlyons/lorem-ipsum/issues
Understøttede Sprog 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"
    }
}