Live Code
Automatic refresh on code change
What is Live Code?
Live Code is a Chrome extension developed by http://www.yago.io, and its main feature is "Automatic refresh on code change".
Extension Screenshots
Download Live Code Extension CRX File
Download Live Code 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
Automatic browser refresh when your code change. It using the amazing Livejs library : http://livejs.com/
Extension Basic Information
Name | |
ID | pbkdbmgemcgnpicnocgjhhohkidgpldc |
Official URL | https://chrome.google.com/webstore/detail/live-code/pbkdbmgemcgnpicnocgjhhohkidgpldc |
Description | Automatic refresh on code change |
File Size | 21.51 KB |
Installation Count | 407 |
Current Version | 1.0 |
Last Updated | 2014-01-23 |
Publish Date | 2014-01-23 |
Rating | 2.50/5 Total 8 Ratings |
Developer | http://www.yago.io |
Payment Type | free |
Extension Website | http://livejs.com/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Live Code", "description": "Automatic refresh on code change", "version": "1.0", "icons": { "128": "icon_128.png", "16": "icon_16.png", "48": "icon_48.png" }, "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "19": "off-19.png", "38": "off-38.png" }, "default_title": "Enable Fine Reader" }, "web_accessible_resources": [ "css\/letemps.css" ] } |