mirror of
https://github.com/agam778/MS-365-Electron.git
synced 2026-02-17 09:02:10 +00:00
92 lines
2.8 KiB
HTML
92 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="initial-scale=1, width=device-width" />
|
|
<title>MS-365-Electron</title>
|
|
<link rel="stylesheet" href="./index.css" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="./favicons/apple-touch-icon.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="./favicons/favicon-32x32.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="./favicons/favicon-16x16.png"
|
|
/>
|
|
<link rel="manifest" href="./favicons/site.webmanifest" />
|
|
<link
|
|
rel="mask-icon"
|
|
href="./favicons/safari-pinned-tab.svg"
|
|
color="#5bbad5"
|
|
/>
|
|
<link rel="shortcut icon" href="./favicons/favicon.ico" />
|
|
<meta name="apple-mobile-web-app-title" content="MS-365-Electron" />
|
|
<meta name="application-name" content="MS-365-Electron" />
|
|
<meta name="msapplication-TileColor" content="#603cba" />
|
|
<meta name="msapplication-config" content="./favicons/browserconfig.xml" />
|
|
<meta name="theme-color" content="#ffffff" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css2?family=Seaweed Script:wght@400&display=swap"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div class="ms-365-electron">
|
|
<div class="content">
|
|
<button class="download" id="download">
|
|
<div class="download-now">
|
|
Download Now:
|
|
<div id="release-tag"></div>
|
|
</div>
|
|
</button>
|
|
<button class="github" id="gitHub">
|
|
<div class="download-now">View on GitHub</div>
|
|
</button>
|
|
<div class="description">
|
|
Unofficial Microsoft 365 Web Desktop Wrapper made with Electron
|
|
</div>
|
|
<b class="heading">MS-365-Electron</b>
|
|
<div class="byagam778" id="byagam778">By @agam778</div>
|
|
</div>
|
|
<img class="preview-icon" alt="" src="./public/preview.png" />
|
|
</div>
|
|
|
|
<script src="./index.js"></script>
|
|
<script>
|
|
var download = document.getElementById("download");
|
|
if (download) {
|
|
download.addEventListener("click", function () {
|
|
window.open("https://github.com/agam778/MS-365-Electron/releases");
|
|
});
|
|
}
|
|
|
|
var gitHub = document.getElementById("gitHub");
|
|
if (gitHub) {
|
|
gitHub.addEventListener("click", function () {
|
|
window.open("https://github.com/agam778/MS-365-Electron/");
|
|
});
|
|
}
|
|
|
|
var byagam778 = document.getElementById("byagam778");
|
|
if (byagam778) {
|
|
byagam778.addEventListener("click", function () {
|
|
window.open("https://github.com/agam778");
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|