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