Paste 'Lorem ipsum...'

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

Что такое Paste 'Lorem ipsum...'?

Paste 'Lorem ipsum...' - это расширение Chrome, разработанное [email protected], и его основная функция - "Right click on a text field or textarea to insert the 'lorem ipsum' text.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Paste 'Lorem ipsum...'

Скачайте файлы расширений Paste 'Lorem ipsum...' в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Paste 'Lorem ipsum...' Paste 'Lorem ipsum...'
ID ihmllonaidjepimjdhjdcgodgekcmhop
Официальный URL https://chromewebstore.google.com/detail/paste-lorem-ipsum/ihmllonaidjepimjdhjdcgodgekcmhop
Описание Right click on a text field or textarea to insert the 'lorem ipsum' text.
Размер файла 41.1 KB
Количество установок 2,730
Текущая Версия 1.0
Последнее Обновление 2013-08-21
Дата публикации 2013-08-21
Рейтинг 2.05/5 Всего 38 оценок
Разработчик [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/nwjlyons/lorem-ipsum
URL страницы помощи https://github.com/nwjlyons/lorem-ipsum/issues
Поддерживаемые языки 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"
    }
}