Lorem Pastum

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

Qu'est-ce que Lorem Pastum ?

Lorem Pastum est une extension Chrome développée par http://www.keybored.fr, et sa fonction principale est "Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Lorem Pastum

Téléchargez les fichiers d'extension Lorem Pastum au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Lorem Pastum Lorem Pastum
ID cgnjnijaeekmclemhnnkcffcdajaknab
URL Officiel https://chrome.google.com/webstore/detail/lorem-pastum/cgnjnijaeekmclemhnnkcffcdajaknab
Description Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu
Taille du Fichier 15.79 KB
Nombre d'Installations 45
Version Actuelle 1.1.3
Dernière Mise à Jour 2017-08-28
Date de Publication 2017-08-28
Évaluation 3.00/5 Total 2 Évaluations
Développeur http://www.keybored.fr
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}