Paste 'Lorem ipsum...'

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

Co je Paste 'Lorem ipsum...'?

Paste 'Lorem ipsum...' je rozšíření Chrome vyvinuté [email protected], a jeho hlavní funkcí je „Right click on a text field or textarea to insert the 'lorem ipsum' text.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Paste 'Lorem ipsum...'

Stáhněte si soubory rozšíření Paste 'Lorem ipsum...' ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
Oficiální URL https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Popis Right click on a text field or textarea to insert the 'lorem ipsum' text.
Velikost souboru 41.1 KB
Počet instalací 2,730
Aktuální Verze 1.0
Poslední Aktualizace 2013-08-21
Datum Vydání 2013-08-21
Hodnocení 2.05/5 Celkem 38 Hodnocení
Vývojář [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/nwjlyons/lorem-ipsum
URL Stránky Nápovědy https://github.com/nwjlyons/lorem-ipsum/issues
Podporované Jazyky 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"
    }
}