UNPKG
box-chrome-sdk
Version:
latest (0.1.1)
0.1.1
0.1.0
A Chrome App SDK for the Box V2 API
github.com/box/Chrome-App-SDK
box/Chrome-App-SDK
box-chrome-sdk
/
demo
/
box_app
/
scripts
/
main.js
14 lines
(12 loc)
•
313 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Listens for the app launching then creates the window
chrome.app.runtime.onLaunched.
addListener
(function() {
var
width =
500
;
var
height =
300
; chrome.app.window.
create
(
'index.html'
, {
id
:
'box'
,
bounds
: {
width
: width,
height
: height } }); });