ウィンドウ付きの Chrome アプリを作成しましたが、移動できません。トップバー (HTML/CSS スタイル) を動かせるようにしたい。Chrome アプリのサンプルを見ましたが、ウィンドウをドラッグできるようにするコードが見つかりません。
質問する
4089 次
2 に答える
-1
Just add below code in your background.js
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create("frameless_window.html",
{ frame: "none",
id: "framelessWinID",
innerBounds: {
width: 360,
height: 300,
left: 600,
minWidth: 220,
minHeight: 220
}
}
);
})
And follow https://github.com/GoogleChrome/chrome-app-samples/tree/master/samples/frameless-window
Here you can find the best sample for creating frameless chrome app with the movable window.It's little bit confusing because, after installing it in chrome you can able to create its shortcut on the desktop as well.
于 2015-06-17T06:01:55.413 に答える