未読チャンネルがある場合、Windowsのタスクバーアイコンにオーバーレイアイコンを表示する

This commit is contained in:
Yuya Ochiai
2015-10-07 22:55:00 +09:00
parent 4772281fce
commit b7ec057d4a
5 changed files with 70 additions and 10 deletions

21
index.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mattermost</title>
</head>
<body>
<!-- Modify src to your Mattermost url -->
<webview id="mainWebview" src="http://192.168.99.100:8065" autosize="on" preload="./webview/mattermost.js"></webview>
<style>
webview {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
</style>
<script src="./index.js"></script>
</body>
</html>