panel.html 511 B

12345678910111213141516
  1. <!-- This Source Code Form is subject to the terms of the Mozilla Public
  2. - License, v. 2.0. If a copy of the MPL was not distributed with this
  3. - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  7. <title>Library detector</title>
  8. <script type="text/javascript">
  9. addon.on('message', function (libraryInfo) {
  10. document.body.innerHTML = libraryInfo;
  11. });
  12. </script>
  13. </head>
  14. <body></body>
  15. </html>