-
Notifications
You must be signed in to change notification settings - Fork 0
/
open-scheme.html
49 lines (47 loc) · 1.33 KB
/
open-scheme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>open scheme</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
function log(msg) {
$('#console').append(msg + "\n");
}
(() => {
const qs = location.search;
if ( !qs || qs === '?' ) {
return;
}
const arg = qs.slice(1); // 冒頭 ? 落とし
if ( arg.match(/^([a-zA-Z0-9_-]+):/) ) {
console.log(`scheme is ${RegExp.$1}. open ${arg}}`);
location.href = arg;
}
})();
</script>
<style type="text/css">
.console {
background-color: #000;
color: #fff;
padding: 1em;
}
fieldset.console legend {
background-color: #000;
color: #fff;
border-radius: 5px;
padding: 5px;
}
</style>
</head>
<body>
<p>open scheme.</p>
<fieldset class="console">
<legend>console</legend>
<pre class="console" id="console">
</pre>
</fieldset>
<p>使い方メモ:URL の `?` 以降に someapp://foo/bar/buz など URL Scheme を書くとよいです。</p>
</body>
</html>