Lorem Pastum

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

Wat is Lorem Pastum?

Lorem Pastum is een Chrome-extensie ontwikkeld door http://www.keybored.fr, en de belangrijkste functie is "Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Lorem Pastum

Download Lorem Pastum-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Lorem Pastum Lorem Pastum
ID cgnjnijaeekmclemhnnkcffcdajaknab
Officiële URL https://chrome.google.com/webstore/detail/lorem-pastum/cgnjnijaeekmclemhnnkcffcdajaknab
Beschrijving Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu
Bestandsgrootte 15.79 KB
Aantal Installaties 45
Huidige Versie 1.1.3
Laatst Bijgewerkt 2017-08-28
Publicatiedatum 2017-08-28
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar http://www.keybored.fr
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}