Lorem Pastum
Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu
什么是Lorem Pastum?
Lorem Pastum是由http://www.keybored.fr开发的Chrome扩展程序,该扩展的主要功能是“Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu”。
扩展截图
下载Lorem Pastum扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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
}
]
} | |