Paste 'Lorem ipsum...'

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

Co to jest Paste 'Lorem ipsum...'?

Paste 'Lorem ipsum...' to rozszerzenie Chrome opracowane przez [email protected], a jego główną funkcją jest „Right click on a text field or textarea to insert the 'lorem ipsum' text.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Paste 'Lorem ipsum...'

Pobierz pliki rozszerzeń Paste 'Lorem ipsum...' w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
Oficjalny URL https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Opis Right click on a text field or textarea to insert the 'lorem ipsum' text.
Rozmiar pliku 41.1 KB
Liczba instalacji 2,730
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-08-21
Data Publikacji 2013-08-21
Ocena 2.05/5 Łącznie 38 Oceny
Deweloper [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/nwjlyons/lorem-ipsum
Adres URL Strony Pomocy https://github.com/nwjlyons/lorem-ipsum/issues
Obsługiwane Języki 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"
    }
}