Fixed not working URLs in the webextension options (#1930)

Also formatted the code with VS Code, that's why it looks so weird.
main
Max Schmitt 8 years ago committed by Elbert Alias
parent 581758f4c3
commit 6e9e5dc4ef

@ -1,7 +1,8 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head>
<head>
<meta charset="utf-8"> <meta charset="utf-8">
<title data-i18n="options">Wappalyzer options</title> <title data-i18n="options">Wappalyzer options</title>
@ -13,8 +14,9 @@
<script src="../node_modules/webextension-polyfill/dist/browser-polyfill.js"></script> <script src="../node_modules/webextension-polyfill/dist/browser-polyfill.js"></script>
<script src="../js/wappalyzer.js"></script> <script src="../js/wappalyzer.js"></script>
<script src="../js/options.js"></script> <script src="../js/options.js"></script>
</head> </head>
<body>
<body>
<div class="hero"> <div class="hero">
<div class="container"> <div class="container">
<img src="../images/logo-white.svg"> <img src="../images/logo-white.svg">
@ -26,19 +28,44 @@
<h1 data-i18n="options">Options</h1> <h1 data-i18n="options">Options</h1>
<p> <p>
<label for="option-upgrade-message"><input id="option-upgrade-message" type="checkbox"> <span data-i18n="optionUpgradeMessage">Tell me about upgrades</span></label> <label for="option-upgrade-message">
<label for="option-dynamic-icon"><input id="option-dynamic-icon" type="checkbox"> <span data-i18n="optionDynamicIcon">Use application icon instead of Wappalyzer logo</span></label> <input id="option-upgrade-message" type="checkbox">
<label for="option-tracking"><input id="option-tracking" type="checkbox"> <span data-i18n="optionTracking">Anonymously send reports on detected applications to wappalyzer.com for research</span></label> <span data-i18n="optionUpgradeMessage">Tell me about upgrades</span>
</label>
<label for="option-dynamic-icon">
<input id="option-dynamic-icon" type="checkbox">
<span data-i18n="optionDynamicIcon">Use application icon instead of Wappalyzer logo</span>
</label>
<label for="option-tracking">
<input id="option-tracking" type="checkbox">
<span data-i18n="optionTracking">Anonymously send reports on detected applications to wappalyzer.com for research</span>
</label>
</p> </p>
<div id="about"> <div id="about">
<p> <p>
<button id="github"><img src="../images/github.png" width="16" height="16" alt=""/> <span data-i18n="github" >Fork Wappalyzer on GitHub!</span></button><!-- <a href="https://github.com/AliasIO/Wappalyzer/fork">
--><button id="twitter"><img src="../images/twitter.png" width="16" height="16" alt=""/> <span data-i18n="twitter">Follow Wappalyzer on Twitter</span></button><!-- <button id="github">
--><button id="wappalyzer"><img src="../images/icon_16.png" width="16" height="16" alt=""/> <span data-i18n="website">Go to wappalyzer.com</span></button> <img src="../images/github.png" width="16" height="16" alt="GitHub icon" />
<span data-i18n="github">Fork Wappalyzer on GitHub!</span>
</button>
</a>
<a href="https://twitter.com/Wappalyzer">
<button id="twitter">
<img src="../images/twitter.png" width="16" height="16" alt="Twitter icon" />
<span data-i18n="twitter">Follow Wappalyzer on Twitter</span>
</button>
</a>
<a href="https://www.wappalyzer.com/">
<button id="wappalyzer">
<img src="../images/icon_16.png" width="16" height="16" alt="Wappalyzer icon" />
<span data-i18n="website">Go to wappalyzer.com</span>
</button>
</a>
</p> </p>
</div> </div>
</div> </div>
</div> </div>
</body> </body>
</html> </html>