Espresso
Convert coffee to js on any web page.
什么是Espresso?
Espresso是由Jonathan Creamer开发的Chrome扩展程序,该扩展的主要功能是“Convert coffee to js on any web page.”。
扩展截图
下载Espresso扩展crx文件
下载Espresso扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension for adding a convert button to any code example that will convert CoffeeScript into JavaScript and back again.
https://github.com/jcreamer898/espresso 扩展基本信息
| 名称 | |
| ID | nmlgmcbclnjedjjmappiljpmfmpeblia |
| 官方URL | https://chrome.google.com/webstore/detail/espresso/nmlgmcbclnjedjjmappiljpmfmpeblia |
| 简介 | Convert coffee to js on any web page. |
| 文件大小 | 111 KB |
| 安装次数 | 25 |
| 当前版本 | 1.0.1.1 |
| 更新时间 | 2013-09-04 |
| 上架时间 | 2013-09-04 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Jonathan Creamer |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Espresso",
"description": "Convert coffee to js on any web page.",
"version": "1.0.1.1",
"icons": {
"128": "icon_128.png"
},
"author": "Jonathan Creamer",
"homepage_url": "https:\/\/github.com\/jcreamer898\/espresso",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"scripts\/default.css"
],
"js": [
"scripts\/coffee-script.js",
"scripts\/jquery.js",
"scripts\/highlight.pack.js",
"scripts\/espresso.js",
"scripts\/inject.js"
]
}
]
} | |