Lorem Pastum

Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu

Что такое Lorem Pastum?

Lorem Pastum - это расширение Chrome, разработанное http://www.keybored.fr, и его основная функция - "Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu".

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

screenshot

Скачать файл CRX расширения Lorem Pastum

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

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

                        This app provides 3 types of Lorem Ipsum text, available from Chrome's context menu (right click) : a single sentence, a whole small paragraph and a long paragraph.

Also works with javascript editors like tinyMCE and CKeditor, and so it's working with Wordpress !

This project is also available on github, and open to pull requests : https://github.com/tameroski/Lorem-Pastum                    

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

Название Lorem Pastum Lorem Pastum
ID cgnjnijaeekmclemhnnkcffcdajaknab
Официальный URL https://chrome.google.com/webstore/detail/lorem-pastum/cgnjnijaeekmclemhnnkcffcdajaknab
Описание Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu
Размер файла 15.79 KB
Количество установок 45
Текущая Версия 1.1.3
Последнее Обновление 2017-08-28
Дата публикации 2017-08-28
Рейтинг 3.00/5 Всего 2 оценок
Разработчик http://www.keybored.fr
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.1.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "default_locale": "en",
    "permissions": [
        "clipboardRead",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}