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 |
| 官方網址 | 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
}
]
} | |