Update
Added a new page in new tab "Online Shopping". Added the ability to pull the filtering lists from diamondcreeper.org web filtering. Added malicious domain blocking. Fixed the tiktok DRM site block. Added some more links in new tab page.
This commit is contained in:
parent
f03e0e3bf5
commit
9a8659a7d9
3 changed files with 28435 additions and 28378 deletions
|
@ -8,21 +8,21 @@ using Bunifu.UI.WinForms;
|
||||||
using CefSharp;
|
using CefSharp;
|
||||||
using CefSharp.WinForms;
|
using CefSharp.WinForms;
|
||||||
|
|
||||||
|
|
||||||
namespace XeroBrowser
|
namespace XeroBrowser
|
||||||
{
|
{
|
||||||
public class RequestHandler : CefSharp.Handler.RequestHandler
|
public class RequestHandler : CefSharp.Handler.RequestHandler
|
||||||
{
|
{
|
||||||
|
|
||||||
// Define arrays with domain names only
|
// Define arrays with domain names only
|
||||||
private readonly string[] blockedDrms = { "netflix.com", "www.netflix.com", "disneyplus.com", "twitch.tv", "tiktok.com" };
|
private readonly string[] blockedDrms = { "netflix.com", "www.netflix.com", "disneyplus.com", "twitch.tv", "tiktok.com", "www.tiktok.com" };
|
||||||
private readonly string[] incompatibleExtSites = { "chrome.google.com", "addons.mozilla.org", "chromewebstore.google.com" };
|
private readonly string[] incompatibleExtSites = { "chrome.google.com", "addons.mozilla.org", "chromewebstore.google.com" };
|
||||||
private string[] adDomains;
|
private string[] adDomains = Array.Empty<string>();
|
||||||
|
private string[] maliciousDomains = Array.Empty<string>();
|
||||||
|
|
||||||
|
|
||||||
public RequestHandler()
|
public RequestHandler()
|
||||||
{
|
{
|
||||||
// Fetch the blocked domains asynchronously when the RequestHandler is instantiated
|
|
||||||
FetchAdDomainsAsync().ContinueWith(t => adDomains = t.Result);
|
FetchAdDomainsAsync().ContinueWith(t => adDomains = t.Result);
|
||||||
|
FetchMaliciousDomainsAsync().ContinueWith(t => maliciousDomains = t.Result);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<string[]> FetchAdDomainsAsync()
|
public async Task<string[]> FetchAdDomainsAsync()
|
||||||
|
@ -39,7 +39,7 @@ namespace XeroBrowser
|
||||||
if (response.IsSuccessStatusCode)
|
if (response.IsSuccessStatusCode)
|
||||||
{
|
{
|
||||||
string content = await response.Content.ReadAsStringAsync();
|
string content = await response.Content.ReadAsStringAsync();
|
||||||
string[] adsDomains = content.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);
|
adDomains = content.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -51,14 +51,31 @@ namespace XeroBrowser
|
||||||
return adDomains;
|
return adDomains;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override bool GetAuthCredentials(IWebBrowser chromiumWebBrowser, IBrowser browser, string originUrl, bool isProxy, string host, int port, string realm, string scheme, IAuthCallback callback)
|
|
||||||
|
public async Task<string[]> FetchMaliciousDomainsAsync()
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
string[] maliciousDomains = Array.Empty<string>();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (HttpClient client = new HttpClient())
|
||||||
|
{
|
||||||
|
string url = "https://diamondcreeper.org/web-filtering/lists/malicious.txt";
|
||||||
|
HttpResponseMessage response = await client.GetAsync(url);
|
||||||
|
|
||||||
|
if (response.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
string content = await response.Content.ReadAsStringAsync();
|
||||||
|
maliciousDomains = content.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
MessageBox.Show($"Error fetching malicious domains: {ex.Message}");
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override IResourceRequestHandler GetResourceRequestHandler(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, bool isNavigation, bool isDownload, string requestInitiator, ref bool disableDefaultHandling)
|
return maliciousDomains;
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override bool OnBeforeBrowse(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, bool userGesture, bool isRedirect)
|
protected override bool OnBeforeBrowse(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, bool userGesture, bool isRedirect)
|
||||||
|
@ -70,25 +87,27 @@ namespace XeroBrowser
|
||||||
{
|
{
|
||||||
// Cancel the navigation or sub-request
|
// Cancel the navigation or sub-request
|
||||||
chromiumWebBrowser.LoadHtml("<html> <head> </head> <style> body{ background-color: rgb(214, 214, 214); } .center{ text-align: center; } .text{ margin-top: 20%; font-family: Arial; } div{ background-color: #f5f5f5; border-radius: 15px; width: 500px; margin-left: 35%; padding: 10px; } </style> <body class=\"center\"> <div class=\"text\"> <h1>Error!</h1> <h3>The requested site requires a DRM (Digital Rights Management) which Xero Browser does not support!</h3> </div> </body></html>");
|
chromiumWebBrowser.LoadHtml("<html> <head> </head> <style> body{ background-color: rgb(214, 214, 214); } .center{ text-align: center; } .text{ margin-top: 20%; font-family: Arial; } div{ background-color: #f5f5f5; border-radius: 15px; width: 500px; margin-left: 35%; padding: 10px; } </style> <body class=\"center\"> <div class=\"text\"> <h1>Error!</h1> <h3>The requested site requires a DRM (Digital Rights Management) which Xero Browser does not support!</h3> </div> </body></html>");
|
||||||
|
return true;
|
||||||
// Clear the txtSearchOrUrl text box
|
|
||||||
//txtSearchOrUrl.Text = string.Empty;
|
|
||||||
}
|
}
|
||||||
else if (incompatibleExtSites.Contains(domain))
|
else if (incompatibleExtSites.Contains(domain))
|
||||||
{
|
{
|
||||||
// Cancel the navigation or sub-request
|
// Cancel the navigation or sub-request
|
||||||
chromiumWebBrowser.LoadHtml("<html> <head> </head> <style> body{ background-color: rgb(214, 214, 214); } .center{ text-align: center; } .text{ margin-top: 20%; font-family: Arial; } div{ background-color: #f5f5f5; border-radius: 15px; width: 500px; margin-left: 35%; padding: 10px; } </style> <body class=\"center\"> <div class=\"text\"> <h1>Error!</h1> <h3>Browser extensions are not supported!</h3> </div> </body></html>");
|
chromiumWebBrowser.LoadHtml("<html> <head> </head> <style> body{ background-color: rgb(214, 214, 214); } .center{ text-align: center; } .text{ margin-top: 20%; font-family: Arial; } div{ background-color: #f5f5f5; border-radius: 15px; width: 500px; margin-left: 35%; padding: 10px; } </style> <body class=\"center\"> <div class=\"text\"> <h1>Error!</h1> <h3>Browser extensions are not supported!</h3> </div> </body></html>");
|
||||||
|
return true;
|
||||||
// Clear the txtSearchOrUrl text box
|
|
||||||
//txtSearchOrUrl.Text = string.Empty;
|
|
||||||
}
|
}
|
||||||
else if (adDomains.Contains(domain))
|
else if (adDomains.Contains(domain))
|
||||||
{
|
{
|
||||||
chromiumWebBrowser.LoadHtml("<html> <head> </head> <style> body{ background-color: rgb(214, 214, 214); } .center{ text-align: center; } .text{ margin-top: 20%; font-family: Arial; } div{ background-color: #f5f5f5; border-radius: 15px; width: 500px; margin-left: 35%; padding: 10px; } </style> <body class=\"center\"> <div class=\"text\"> <h1>Ads are blocked!</h1> <h3>Ads are blocked in xero browser</h3> </div> </body></html>");
|
chromiumWebBrowser.LoadHtml("<html> <head> </head> <style> body{ background-color: rgb(214, 214, 214); } .center{ text-align: center; } .text{ margin-top: 20%; font-family: Arial; } div{ background-color: #f5f5f5; border-radius: 15px; width: 500px; margin-left: 35%; padding: 10px; } </style> <body class=\"center\"> <div class=\"text\"> <h1>Ads are blocked!</h1> <h3>Ads are blocked in xero browser</h3> </div> </body></html>");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
else if (maliciousDomains.Contains(domain))
|
||||||
|
{
|
||||||
|
chromiumWebBrowser.LoadHtml("<html> <head> </head> <style> body{ background-color: rgb(214, 214, 214); } .center{ text-align: center; } .text{ margin-top: 20%; font-family: Arial; } div{ background-color: #f5f5f5; border-radius: 15px; width: 500px; margin-left: 35%; padding: 10px; } </style> <body class=\"center\"> <div class=\"text\"> <h1>Visiting a dangerous website has been prevented!</h1> <h3>Navigation to the malicious website designed to infect your computer, reduce its performance, break the system or cause other harm has been blocked.\r\n\r\nYou were protected from visiting this website. You can close this window with no risk.</h3> </div> </body></html>");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -198,7 +198,7 @@ namespace XeroBrowser
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
chromiumWebBrowser1.Load("https://www.duckduckgo.com/?q=" + txtSearchOrUrl.Text.Trim().Replace(" ", "+") + "&kp=1&va=k&t=hz&ia=web");
|
chromiumWebBrowser1.Load("https://www.duckduckgo.com/?q=" + txtSearchOrUrl.Text.Trim().Replace(" ", "+"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<!--suppress CommaExpressionJS, CssInvalidPropertyValue, CssInvalidPseudoSelector, JSUnresolvedVariable, JSDeprecatedSymbols, SpellCheckingInspection -->
|
<!--suppress CommaExpressionJS, CssInvalidPropertyValue, CssInvalidPseudoSelector, JSUnresolvedVariable, JSDeprecatedSymbols, SpellCheckingInspection -->
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>New Tab</title>
|
<title>New Tab</title>
|
||||||
<meta content="summary_large_image" name="twitter:card">
|
<meta content="summary_large_image" name="twitter:card">
|
||||||
|
@ -11,13 +11,15 @@
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,regular,500,600,700" media="all">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,regular,500,600,700" media="all">
|
||||||
<script src="https://kit.fontawesome.com/62fde90999.js" crossorigin="anonymous"></script>
|
<script src="https://kit.fontawesome.com/62fde90999.js" crossorigin="anonymous"></script>
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||||
<script>WebFont.load({ google: { families: ["Inter:300,regular,500,600,700"] }});</script>
|
<script>WebFont.load({ google: { families: ["Inter:300,regular,500,600,700"] } });</script>
|
||||||
<script>!function(o,c){
|
<script>
|
||||||
const n = c.documentElement, t = " w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
|
!function (o, c) {
|
||||||
|
const n = c.documentElement, t = " w-mod-"; n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch")
|
||||||
|
}(window, document);</script>
|
||||||
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
||||||
<link href="/favicon.ico" rel="apple-touch-icon">
|
<link href="/favicon.ico" rel="apple-touch-icon">
|
||||||
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-52115242-20"></script>
|
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-52115242-20"></script>
|
||||||
<script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'UA-52115242-20', {'anonymize_ip': false});</script>
|
<script>window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'UA-52115242-20', { 'anonymize_ip': false });</script>
|
||||||
<style>
|
<style>
|
||||||
html {
|
html {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
|
@ -1725,6 +1727,7 @@
|
||||||
opacity: .6
|
opacity: .6
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.w-richtext figure div {
|
.w-richtext figure div {
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
color: transparent
|
color: transparent
|
||||||
|
@ -7056,8 +7059,8 @@
|
||||||
justify-self: end
|
justify-self: end
|
||||||
}
|
}
|
||||||
/*!* Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com
|
/*!* Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com
|
||||||
* License - https://fontawesome.com/license (Commercial License)
|
* License - https://fontawesome.com/license (Commercial License)
|
||||||
* Copyright 2023 Fonticons, Inc.*/
|
* Copyright 2023 Fonticons, Inc.*/
|
||||||
|
|
||||||
.fa {
|
.fa {
|
||||||
font-family: var(--fa-style-family,"Font Awesome 6 Pro");
|
font-family: var(--fa-style-family,"Font Awesome 6 Pro");
|
||||||
|
@ -14340,6 +14343,7 @@
|
||||||
content: "\e30c"
|
content: "\e30c"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.fa-traffic-light-slow:before {
|
.fa-traffic-light-slow:before {
|
||||||
content: "\f639"
|
content: "\f639"
|
||||||
}
|
}
|
||||||
|
@ -19304,6 +19308,7 @@
|
||||||
content: "\f687"
|
content: "\f687"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.fa-circle-quarter:before {
|
.fa-circle-quarter:before {
|
||||||
content: "\e11f"
|
content: "\e11f"
|
||||||
}
|
}
|
||||||
|
@ -21505,6 +21510,7 @@
|
||||||
content: "\f39d"
|
content: "\f39d"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.fa-cotton-bureau:before {
|
.fa-cotton-bureau:before {
|
||||||
content: "\f89e"
|
content: "\f89e"
|
||||||
}
|
}
|
||||||
|
@ -35072,33 +35078,35 @@
|
||||||
unicode-range: u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a
|
unicode-range: u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<script>
|
<script>
|
||||||
document.onkeydown = function(e) {
|
document.onkeydown = function (e) {
|
||||||
if(event.keyCode === 123) {
|
if (event.keyCode === 123) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if(e.ctrlKey && e.shiftKey && e.keyCode === 'I'.charCodeAt(0)){
|
if (e.ctrlKey && e.shiftKey && e.keyCode === 'I'.charCodeAt(0)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if(e.ctrlKey && e.shiftKey && e.keyCode === 'J'.charCodeAt(0)){
|
if (e.ctrlKey && e.shiftKey && e.keyCode === 'J'.charCodeAt(0)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if(e.ctrlKey && e.keyCode === 'U'.charCodeAt(0)){
|
if (e.ctrlKey && e.keyCode === 'U'.charCodeAt(0)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
document.addEventListener('contextmenu', event => event.preventDefault());
|
document.addEventListener('contextmenu', event => event.preventDefault());
|
||||||
</script>
|
</script>
|
||||||
<body>
|
<body>
|
||||||
<div id="Top" class="back-to-top-container">
|
<div id="Top" class="back-to-top-container">
|
||||||
<div class="back-to-top-button-wrapper" style="opacity: 0; transform: translate3d(0px, 0px, 0px) scale3d(0, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;"><a href="#Top" class="button-circle bg-gray-3 w-inline-block"><img src="https://assets.website-files.com/5dcb2e333e05bec4ef2fee2f/5dd224eeedfe6ae0b672ad8b_icon-arrow-up.svg" alt="" class="button-circle-icon"></a></div>
|
<div class="back-to-top-button-wrapper" style="opacity: 0; transform: translate3d(0px, 0px, 0px) scale3d(0, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); transform-style: preserve-3d;"><a href="#Top" class="button-circle bg-gray-3 w-inline-block"><img src="https://assets.website-files.com/5dcb2e333e05bec4ef2fee2f/5dd224eeedfe6ae0b672ad8b_icon-arrow-up.svg" alt="" class="button-circle-icon"></a></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<div class="container grid-container">
|
<div class="container grid-container">
|
||||||
<div class="content-width-extra-large">
|
<div class="content-width-extra-large">
|
||||||
<h3 class="display-heading-2">Xero Browser<br></h3>
|
<h4 class="display-heading-2">
|
||||||
|
Xero Browser<br>
|
||||||
|
</h4>
|
||||||
<div>
|
<div>
|
||||||
<h3 class="card-heading display-inline">New</h3>
|
<h3 class="card-heading display-inline">New</h3>
|
||||||
<h3 class="card-heading display-inline text-gray-4">Tab</h3>
|
<h3 class="card-heading display-inline text-gray-4">Tab</h3>
|
||||||
|
@ -35126,6 +35134,9 @@ document.addEventListener('contextmenu', event => event.preventDefault());
|
||||||
<a data-w-tab="Tab 5" class="tabs-vertical-tab w-inline-block w-tab-link" id="w-tabs-1-data-w-tab-4" href="#w-tabs-1-data-w-pane-4" role="tab" aria-controls="w-tabs-1-data-w-pane-4" aria-selected="false" tabindex="-1">
|
<a data-w-tab="Tab 5" class="tabs-vertical-tab w-inline-block w-tab-link" id="w-tabs-1-data-w-tab-4" href="#w-tabs-1-data-w-pane-4" role="tab" aria-controls="w-tabs-1-data-w-pane-4" aria-selected="false" tabindex="-1">
|
||||||
<div>Gaming</div>
|
<div>Gaming</div>
|
||||||
</a>
|
</a>
|
||||||
|
<a data-w-tab="Tab 6" class="tabs-vertical-tab w-inline-block w-tab-link" id="w-tabs-1-data-w-tab-4" href="#w-tabs-1-data-w-pane-4" role="tab" aria-controls="w-tabs-1-data-w-pane-4" aria-selected="false" tabindex="-1">
|
||||||
|
<div>Online Shopping</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-tab-content">
|
<div class="w-tab-content">
|
||||||
<div data-w-tab="Tab 1" class="w-tab-pane w--tab-active" id="w-tabs-1-data-w-pane-0" role="tabpanel" aria-labelledby="w-tabs-1-data-w-tab-0" style="opacity: 1; transition: opacity 300ms ease 0s;">
|
<div data-w-tab="Tab 1" class="w-tab-pane w--tab-active" id="w-tabs-1-data-w-pane-0" role="tabpanel" aria-labelledby="w-tabs-1-data-w-tab-0" style="opacity: 1; transition: opacity 300ms ease 0s;">
|
||||||
|
@ -35149,6 +35160,8 @@ document.addEventListener('contextmenu', event => event.preventDefault());
|
||||||
<a href="https://facebook.com/" class="button w-button"><i class="fa-brands fa-facebook"></i> Facebook</a>
|
<a href="https://facebook.com/" class="button w-button"><i class="fa-brands fa-facebook"></i> Facebook</a>
|
||||||
<a href="https://x.com/" class="button w-button"><i class="fa fa-x"></i> (Twitter)</a>
|
<a href="https://x.com/" class="button w-button"><i class="fa fa-x"></i> (Twitter)</a>
|
||||||
<a href="https://mastodon.social/explore" class="button w-button"><i class="fa-brands fa-mastodon"></i> Mastodon</a>
|
<a href="https://mastodon.social/explore" class="button w-button"><i class="fa-brands fa-mastodon"></i> Mastodon</a>
|
||||||
|
<a href="https://threads.net" class="button w-button"><i class="fa-brands fa-threads"></i> Threads</a>
|
||||||
|
<a href="https://instagram.com" class="button w-button"><i class="fa-brands fa-instagram"></i> Instagram</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -35180,6 +35193,9 @@ document.addEventListener('contextmenu', event => event.preventDefault());
|
||||||
<a href="https://classroom.google.com" class="button w-button">Google Classroom</a>
|
<a href="https://classroom.google.com" class="button w-button">Google Classroom</a>
|
||||||
<a href="https://drive.google.com" class="button w-button"><i class="fa-brands fa-google-drive"></i> Google Drive</a>
|
<a href="https://drive.google.com" class="button w-button"><i class="fa-brands fa-google-drive"></i> Google Drive</a>
|
||||||
<a href="https://mail.google.com" class="button w-button">Gmail</a>
|
<a href="https://mail.google.com" class="button w-button">Gmail</a>
|
||||||
|
<a href="https://office.com" class="button w-button">Microsoft Office</a>
|
||||||
|
<a href="https://outlook.com" class="button w-button">Outlook</a>
|
||||||
|
<a href="https://xero.com" class="button w-button">Xero</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -35190,9 +35206,28 @@ document.addEventListener('contextmenu', event => event.preventDefault());
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div class="space-bottom-large">
|
<div class="space-bottom-large">
|
||||||
<div>
|
<div>
|
||||||
|
<a href="https://coolmathgames.com" class="button w-button">CoolMathGames</a>
|
||||||
<a href="https://store.steampowered.com" class="button w-button">Steam</a>
|
<a href="https://store.steampowered.com" class="button w-button">Steam</a>
|
||||||
<a href="https://minecraft.net" class="button w-button">Minecraft</a>
|
<a href="https://minecraft.net" class="button w-button">Minecraft</a>
|
||||||
<a href="https://hoyolab.com" class="button w-button">Hoyolab</a>
|
<a href="https://hoyolab.com" class="button w-button">Hoyolab</a>
|
||||||
|
<a href="https://oculus.com" class="button w-button">Oculus</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div data-w-tab="Tab 6" class="w-tab-pane" id="w-tabs-1-data-w-pane-4" role="tabpanel" aria-labelledby="w-tabs-1-data-w-tab-4">
|
||||||
|
<div class="panel">
|
||||||
|
<div class="panel-body">
|
||||||
|
<div class="space-bottom-large">
|
||||||
|
<div>
|
||||||
|
<a href="https://amazon.com" class="button w-button">Amazon</a>
|
||||||
|
<a href="https://amazon.com.au" class="button w-button">Amazon Australia</a>
|
||||||
|
<a href="https://ebay.com" class="button w-button">Ebay</a>
|
||||||
|
<a href="https://trademe.co.nz" class="button w-button">Trademe NZ</a>
|
||||||
|
<a href="https://pbtech.co.nz" class="button w-button">PB Tech NZ</a>
|
||||||
|
<a href="https://pbtech.com" class="button w-button">PB Tech Australia</a>
|
||||||
|
<a href="https://microcenter.com" class="button w-button">Microcenter</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -35210,10 +35245,13 @@ document.addEventListener('contextmenu', event => event.preventDefault());
|
||||||
<div class="panel bg-gray-3">
|
<div class="panel bg-gray-3">
|
||||||
<div class="notice-dismiss">
|
<div class="notice-dismiss">
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body panel-body-small"><h6>Notice!</h6>
|
<div class="panel-body panel-body-small">
|
||||||
|
<h6>Notice!</h6>
|
||||||
<div>Xero Browser is in beta stages right now, so expect lots of bugs.</div>
|
<div>Xero Browser is in beta stages right now, so expect lots of bugs.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="jquery-3.5.1.min.dc5e7f18c8.js"></script>
|
</body>
|
||||||
<script src="script.js"></script>
|
<script src="jquery-3.5.1.min.dc5e7f18c8.js"></script>
|
||||||
|
<script src="script.js"></script>
|
||||||
|
</html>
|
Reference in a new issue