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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
        }
    ]
}