2024-07-21 17:04:59 +05:30
|
|
|
<!doctype html>
|
2021-11-08 08:49:34 +05:30
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
2023-06-07 18:19:01 +05:30
|
|
|
<meta name="viewport" content="initial-scale=1, width=device-width" />
|
|
|
|
|
<title>MS-365-Electron</title>
|
|
|
|
|
<link rel="stylesheet" href="./index.css" />
|
2024-07-21 17:04:59 +05:30
|
|
|
<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" />
|
2023-06-07 18:19:01 +05:30
|
|
|
<link rel="manifest" href="./favicons/site.webmanifest" />
|
2024-07-21 17:04:59 +05:30
|
|
|
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5" />
|
2023-06-07 18:19:01 +05:30
|
|
|
<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"
|
2021-11-08 08:49:34 +05:30
|
|
|
/>
|
|
|
|
|
</head>
|
2023-06-07 18:19:01 +05:30
|
|
|
<body>
|
2024-07-21 17:31:37 +05:30
|
|
|
<div class="container">
|
|
|
|
|
<div class="ms-365-electron">
|
|
|
|
|
<div class="byagam778" id="byagam778">By @agam778</div>
|
|
|
|
|
<div class="heading">MS-365-Electron</div>
|
2023-06-07 18:19:01 +05:30
|
|
|
<div class="description">
|
|
|
|
|
Unofficial Microsoft 365 Web Desktop Wrapper made with Electron
|
|
|
|
|
</div>
|
2024-07-21 17:31:37 +05:30
|
|
|
<div class="buttons">
|
|
|
|
|
<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>
|
2021-11-08 08:49:34 +05:30
|
|
|
</div>
|
2023-06-07 18:19:01 +05:30
|
|
|
<img class="preview-icon" alt="" src="./public/preview.png" />
|
2021-11-08 08:49:34 +05:30
|
|
|
</div>
|
|
|
|
|
|
2023-06-07 18:19:01 +05:30
|
|
|
<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/");
|
|
|
|
|
});
|
|
|
|
|
}
|
2021-11-08 08:49:34 +05:30
|
|
|
|
2023-06-07 18:19:01 +05:30
|
|
|
var byagam778 = document.getElementById("byagam778");
|
|
|
|
|
if (byagam778) {
|
|
|
|
|
byagam778.addEventListener("click", function () {
|
|
|
|
|
window.open("https://github.com/agam778");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2021-11-08 08:49:34 +05:30
|
|
|
</body>
|
|
|
|
|
</html>
|