forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
42 lines (38 loc) · 916 Bytes
/
options.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
<!doctype html>
<html>
<head>
<title>Stylizr</title>
<style>
body {
font-family: sans-serif;
}
label {
display: block;
}
textarea {
font-family: monospace;
}
.message {
height: 20px;
background: #eee;
padding: 5px;
}
</style>
</head>
<body>
<div class="message"></div>
<h3>Stylizr Instructions</h3>
<ol>
<li>Write CSS in this textarea and save</li>
<li>Navigate to some page</li>
<li>Click the browser action icon <img src="icon.png" /></li>
<li>Hey presto! CSS is injected!</li>
</ol>
<textarea name="style_url" id="style_url" cols=80 rows=24
placeholder="eg: * { font-size: 110%; }"></textarea>
<br/>
<button class="submit">Save</button>
<button class="reset">Reset</button>
<script src="options.js"></script>
</body>
</html>