mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-10 11:57:48 -03:00
18 lines
426 B
HTML
18 lines
426 B
HTML
|
<!--
|
||
|
Copyright 2013 The Chromium Authors
|
||
|
Use of this source code is governed by a BSD-style license that can be
|
||
|
found in the LICENSE file.
|
||
|
|
||
|
We use an HTML page just to have access to the DOM, for URL
|
||
|
parsing. An alternative would be to include a URL parsing JavaScript
|
||
|
library with the extension but this approach is likely smaller and
|
||
|
faster.
|
||
|
-->
|
||
|
<html>
|
||
|
<head>
|
||
|
<script src="thunk.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|