tenfourfox/browser/components/search/test/webapi.html

17 lines
285 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<script>
function installEngine() {
var query = window.location.search.substring(1);
var args = JSON.parse(decodeURIComponent(query));
window.external.AddSearchProvider(...args);
}
</script>
</head>
<body onload="installEngine()">
</body>
</html>