Espresso
Convert coffee to js on any web page.
What is Espresso?
Espresso is a Chrome extension developed by Jonathan Creamer, and its main feature is "Convert coffee to js on any web page.".
Extension Screenshots
Download Espresso Extension CRX File
Download Espresso 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
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
Extension Basic Information
Name | |
ID | nmlgmcbclnjedjjmappiljpmfmpeblia |
Official URL | https://chrome.google.com/webstore/detail/espresso/nmlgmcbclnjedjjmappiljpmfmpeblia |
Description | Convert coffee to js on any web page. |
File Size | 111 KB |
Installation Count | 25 |
Current Version | 1.0.1.1 |
Last Updated | 2013-09-04 |
Publish Date | 2013-09-04 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Jonathan Creamer |
Payment Type | free |
Supported Languages | 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" ] } ] } |