You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.6 KiB
121 lines
3.6 KiB
<html><head> |
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"> |
|
<title>%TITLE%</title> |
|
<style> |
|
html {font-family: sans-serif;} |
|
html * {font-size: 100%;line-height: 1.6;} |
|
#box {max-width:700px;min-width:400px;overflow:auto;margin: 25px auto 10px auto;padding: 10px 40px;text-align: %LEFT_STR%;direction: %DIRECTION%;} |
|
h1 {font-size: 160%;margin-bottom: 0px;} |
|
h2 {margin: 5px 0px;font-size: 100%;font-weight: bold;} |
|
dl {margin-top: 0px;} |
|
dt {display: block;float: %LEFT_STR%;min-width: 24%;margin: 0 0 0.3em 1%} |
|
dd {margin: 0 0 0.3em 28%;word-wrap:break-word;} |
|
p {margin-%LEFT_STR%: 1%;} |
|
.about-img {float: %RIGHT_STR%;margin-top:10px;width:300px;} |
|
table.tbl {width: 100%;margin: 15px 0;border-radius: 4px;padding: 0px;border: 2px solid;border-collapse: separate;} |
|
.tbl th{border-radius: 2px;border: 1px solid;padding: 1px 3px;font-style:italic;} |
|
.tbl th[colspan="2"] {text-align: center;font-style:normal;} |
|
.tbl td{border-radius: 2px;border: 1px solid;text-align: center;padding:1px 3px;} |
|
.tbl td:first-child{text-align: %LEFT_STR%;padding:1px 3px 1px 5px;} |
|
.no-available-plugins{text-align: center !important;} |
|
.tbl td:nth-of-type(2){max-width: 400px;max-height: 50px;overflow:auto;} |
|
|
|
@media (prefers-color-scheme: light) { |
|
html {background: #dddddd;color: #525c66;} |
|
#box {background: #ffffff;} |
|
h1 {color: #1a4ba4;} |
|
dd {color: black;} |
|
table.tbl {border-color: #aaa;} |
|
.tbl th[colspan="2"] {background: #ddd;} |
|
.tbl th {background: #eee;border-color: #aaa;} |
|
.tbl td {border-color: #aaa;} |
|
.tbl td:first-child {background: #eee;} |
|
.no-available-plugins {background: white !important;} |
|
.tbl td:nth-of-type(2) {color: black;} |
|
.dark {display: none;} |
|
} |
|
@media (prefers-color-scheme: dark) { |
|
html {background: #070709;color: #dddddd;} |
|
#box {background: #171717;} |
|
h1 {color: #0078d7;} |
|
dd {color: white;} |
|
table.tbl {border-color: #555;} |
|
.tbl th[colspan="2"] {background: #353535;} |
|
.tbl th {background: #252525;border-color: #555;} |
|
.tbl td {border-color: #555;} |
|
.tbl td:first-child {background: #252525;} |
|
.no-available-plugins {background: black !important;} |
|
.tbl td:nth-of-type(2) {color: white;} |
|
.light {display: none;} |
|
} |
|
</style> |
|
<script type="text/javascript"> |
|
function addPlugins() { |
|
var table = document.getElementById('npapi-plugins'); |
|
var existing = {}; |
|
for (var i = 0; i < navigator.plugins.length; i++) { |
|
var plugin = navigator.plugins[i]; |
|
if (plugin.name == '' || existing[plugin.filename]) { |
|
continue; |
|
} |
|
existing[plugin.filename] = true; |
|
table.innerHTML += "<tr><td>" + plugin.name + "</td><td colspan=3>" |
|
+ plugin.description + " (" + plugin.filename + ")</td></tr>"; |
|
} |
|
} |
|
window.addEventListener("load", addPlugins, false); |
|
</script> |
|
</head> |
|
<body> |
|
<div id="box"> |
|
<img src="%ABOUT-IMG%" class="about-img light"> |
|
<img src="%ABOUT-IMG-DARK%" class="about-img dark"> |
|
<h1>%CONFIG%</h1> |
|
<h2>%INFORMATIONS-ABOUT-VERSION%</h2> |
|
<dl> |
|
%VERSION-INFO% |
|
</dl> |
|
|
|
<h2>%BROWSER-IDENTIFICATION%</h2> |
|
<p>%USER-AGENT%</p> |
|
|
|
<h2>%PATHS%</h2> |
|
<dl> |
|
%PATHS-TEXT% |
|
</dl> |
|
|
|
<h2>%BUILD-CONFIG%</h2> |
|
<dl> |
|
%BUILD-CONFIG-TEXT% |
|
</dl> |
|
|
|
<h2>%PLUGINS%</h2> |
|
|
|
<table class="tbl"> |
|
<thead> |
|
<tr><th>%PL-NAME%</th><th>%PL-VER%</th><th>%PL-AUTH%</th><th>%PL-DESC%</th></tr> |
|
</thead> |
|
<tbody> |
|
%PLUGINS-INFO% |
|
</tbody> |
|
<tbody id="npapi-plugins"> |
|
|
|
</tbody> |
|
</table> |
|
|
|
<h2>%PREFS%</h2> |
|
|
|
<table class="tbl"> |
|
<thead> |
|
<tr><th>%OPTION%</th><th>%VALUE%</th></tr> |
|
</thead> |
|
<tbody> |
|
%PREFS-INFO% |
|
</tbody> |
|
</table> |
|
|
|
<small style="text-align:justify"> |
|
%CONFIG-ABOUT% |
|
</small> |
|
</div> |
|
</body></html>
|
|
|