1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-19 19:53:19 +12:00
uMatrix/src/about.html

74 lines
3.3 KiB
HTML
Raw Normal View History

2014-10-18 08:01:09 +13:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
2015-05-12 08:48:29 +12:00
<title>uMatrix — About</title>
2014-10-18 08:01:09 +13:00
<link rel="stylesheet" type="text/css" href="css/common.css">
<link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
2014-10-29 03:49:09 +13:00
<style>
div.body > ul {
padding-left: 0;
padding-right: 0;
}
2014-10-29 03:49:09 +13:00
ul {
list-style-type: none;
}
</style>
2014-10-18 08:01:09 +13:00
</head>
<body>
2018-04-09 01:10:11 +12:00
<div class="body">
2014-10-18 08:01:09 +13:00
2018-04-09 01:10:11 +12:00
<h3>uMatrix <span id="aboutVersion"></span></h3>
2014-10-29 03:49:09 +13:00
<ul>
<li>Copyright (c) Raymond Hill 2013-present<br>
<li>&nbsp;
2014-10-29 03:49:09 +13:00
<li><span id="aboutStorageUsed"></span><br>
<li>&nbsp;
<li><span data-i18n="aboutChangelog"></span><br>
<li><a href="https://github.com/gorhill/uMatrix/wiki"><span data-i18n="aboutDoc"></span></a><br>
<li><span data-i18n="aboutPermissions"></span><br>
<li><a href="https://github.com/gorhill/uMatrix" data-i18n="aboutCode"></a><br>
<li><a href="https://github.com/uBlockOrigin/uMatrix-issues/issues" data-i18n="aboutIssues"></a><br>
2014-11-04 08:27:59 +13:00
<li><span data-i18n="aboutContributors"></span>
2014-10-29 03:49:09 +13:00
<ul>
2015-05-12 08:48:29 +12:00
<li><span data-i18n="aboutCodeContributors"></span> <a href="https://github.com/gorhill/uMatrix/graphs/contributors">uMatrix, <a href="https://github.com/gorhill/httpswitchboard/graphs/contributors">HTTP Switchboard</a>
<li><span data-i18n="aboutIssueContributors"></span> <a href="https://github.com/gorhill/uMatrix/issues?q=is%3Aissue">uMatrix</a>, <a href="https://github.com/gorhill/httpswitchboard/issues?q=is%3Aissue">HTTP Switchboard</a>
2014-11-04 08:27:59 +13:00
<li><span data-i18n="aboutTranslationContributors"></span> <a href="https://github.com/gorhill/uMatrix/wiki/Translation-work-contributors">Crowdin</a>
2014-10-29 03:49:09 +13:00
</ul>
<li><a href="https://github.com/bestiejs/punycode.js" target="_blank">Punycode.js</a> by <a href="https://github.com/mathiasbynens">Mathias Bynens</a>
<li><a href="https://fontawesome.com/" target="_blank">Font Awesome</a> by <a href="https://github.com/davegandy">Dave Gandy</a>
<li><a href="https://codemirror.net/" target="_blank">CodeMirror</a> by <a href="https://github.com/marijnh">Marijn Haverbeke</a>
<li><a href="https://github.com/Swatinem/diff" target="_blank">An implementation of Myers' diff algorithm</a> by <a href="https://github.com/Swatinem">Arpad Borsos</a>
2014-10-29 03:49:09 +13:00
</ul>
2014-10-18 08:01:09 +13:00
2018-04-09 01:10:11 +12:00
<h3 data-i18n="aboutUserDataHeader"></h3>
2014-10-18 08:01:09 +13:00
<div>
<p><button type="button" id="backupUserDataButton" data-i18n="aboutBackupButton"></button>
<button type="button" id="restoreUserDataButton" data-i18n="aboutRestoreButton"></button>
2014-10-24 12:40:48 +13:00
<input id="restoreFilePicker" type="file" accept="text/plain" style="display:none;">
<p style="margin-left: 2em;" data-i18n="aboutOr">
<p><button type="button" id="resetUserDataButton" data-i18n="aboutResetButton"></button>
2014-10-18 08:01:09 +13:00
</div>
2018-04-09 01:10:11 +12:00
</div><!-- end of div.body -->
2018-04-09 01:10:11 +12:00
<div style="display: none;">
<span data-i18n="aboutStorageUsed"></span>
<span data-i18n="aboutBackupFilename"></span>
<span data-i18n="aboutRestoreConfirm"></span>
<span data-i18n="aboutRestoreError"></span>
<span data-i18n="aboutResetConfirm"></span>
</div>
<script src="js/vapi.js"></script>
2015-04-12 09:15:57 +12:00
<script src="js/vapi-common.js"></script>
<script src="js/vapi-client.js"></script>
2014-10-24 12:40:48 +13:00
<script src="js/udom.js"></script>
2014-10-18 08:01:09 +13:00
<script src="js/i18n.js"></script>
<script src="js/dashboard-common.js"></script>
<script src="js/about.js"></script>
</body>
</html>