1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-14 00:49:52 +02:00
CanvasBlocker/test/detectionTest.html

26 lines
406 B
HTML
Raw Normal View History

2017-04-23 00:25:33 +02:00
<!DOCTYPE html>
<html>
<head>
2017-08-13 23:44:31 +02:00
<title>Detection test</title>
2017-04-23 00:25:33 +02:00
<style>
.notRun {
color: lightgray;
}
.loud .status{
color: red;
}
.stealthy .status{
color: darkgreen;
}
.failed {
background-color: red;
}
</style>
</head>
<body>
2017-08-13 23:44:31 +02:00
<h1>Detection test</h1>
Checks if the addon can be detected by websites.
2017-04-23 00:25:33 +02:00
<ul id="tests"></ul>
2017-08-13 23:44:31 +02:00
<script src="detectionTest.js"></script>
2017-04-23 00:25:33 +02:00
</body>
</html>