Lorem Pastum

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

Hvad er Lorem Pastum?

Lorem Pastum er en Chrome-udvidelse udviklet af http://www.keybored.fr, og dens hovedfunktion er "Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu".

Udvidelsesskærmbilleder

screenshot

Download Lorem Pastum-udvidelses-CRX-fil

Download Lorem Pastum-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Lorem Pastum Lorem Pastum
ID cgnjnijaeekmclemhnnkcffcdajaknab
Officiel URL https://chrome.google.com/webstore/detail/lorem-pastum/cgnjnijaeekmclemhnnkcffcdajaknab
Beskrivelse Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu
Filstørrelse 15.79 KB
Antal Installationer 45
Nuværende Version 1.1.3
Senest Opdateret 2017-08-28
Udgivelsesdato 2017-08-28
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler http://www.keybored.fr
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}