catlogjs
Version:
Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions
14 lines (13 loc) • 366 B
JavaScript
;
/**
* Listens for the app launching then creates the window
*
* @see http://developer.chrome.com/trunk/apps/experimental.app.html
* @see http://developer.chrome.com/trunk/apps/app.window.html
*/
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
width: 500,
height: 309
});
});