Lorem Pastum
Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu
What is Lorem Pastum?
Lorem Pastum is a Chrome extension developed by http://www.keybored.fr, and its main feature is "Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu".
Extension Screenshots
Download Lorem Pastum Extension CRX File
Download Lorem Pastum extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | cgnjnijaeekmclemhnnkcffcdajaknab |
Official URL | 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 |
File Size | 15.79 KB |
Installation Count | 45 |
Current Version | 1.1.3 |
Last Updated | 2017-08-28 |
Publish Date | 2017-08-28 |
Rating | 3.00/5 Total 2 Ratings |
Developer | http://www.keybored.fr |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } ] } |