Paste 'Lorem ipsum...'

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

Vad är Paste 'Lorem ipsum...'?

Paste 'Lorem ipsum...' är en Chrome-tillägg utvecklad av [email protected], och dess huvudfunktion är "Right click on a text field or textarea to insert the 'lorem ipsum' text.".

Tilläggsskärmbilder

screenshot

Ladda ner Paste 'Lorem ipsum...'-förlängningens CRX-fil

Ladda ner Paste 'Lorem ipsum...'-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
Officiell webbadress https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Beskrivning Right click on a text field or textarea to insert the 'lorem ipsum' text.
Filstorlek 41.1 KB
Antal Installationer 2,730
Aktuell Version 1.0
Senast Uppdaterad 2013-08-21
Publiceringsdatum 2013-08-21
Betyg 2.05/5 Totalt 38 Betyg
Utvecklare [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/nwjlyons/lorem-ipsum
Hjälpsida URL https://github.com/nwjlyons/lorem-ipsum/issues
Stödda Språk 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"
    }
}