1
0
mirror of https://git.tuxpa.in/a/code-server.git synced 2025-01-19 05:58:45 +00:00
code-server-2/packages/app/chrome/src/background.ts

14 lines
296 B
TypeScript
Raw Normal View History

/// <reference path="../node_modules/@types/chrome/index.d.ts" />
// tslint:disable-next-line:no-any
const chromeApp = (<any>chrome).app;
chromeApp.runtime.onLaunched.addListener(() => {
chromeApp.window.create("src/index.html", {
outerBounds: {
width: 400,
height: 500,
},
});
});