mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-10 23:28:51 +01:00
26 lines
406 B
HTML
26 lines
406 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Detection test</title>
|
|
<style>
|
|
.notRun {
|
|
color: lightgray;
|
|
}
|
|
.loud .status{
|
|
color: red;
|
|
}
|
|
.stealthy .status{
|
|
color: darkgreen;
|
|
}
|
|
.failed {
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Detection test</h1>
|
|
Checks if the addon can be detected by websites.
|
|
<ul id="tests"></ul>
|
|
<script src="detectionTest.js"></script>
|
|
</body>
|
|
</html> |