HamShield/examples/ChromeHAMShield/background.js

8 lines
176 B
JavaScript
Raw Normal View History

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create("window.html", {
"bounds": {
"width": 685,
"height": 263
}
});
});