forked from jswanner/DontF-WithPaste
-
Notifications
You must be signed in to change notification settings - Fork 21
/
options.html
34 lines (33 loc) · 1.24 KB
/
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
<!doctype html>
<html>
<head>
<link href="styles.css" rel="stylesheet" type="text/css" />
<script src="dfwp.js" type="text/javascript"></script>
<script src="options.js" type="text/javascript"></script>
</head>
<body>
<form class="form">
<fieldset>
<p>This extension will be active for sites that match any of the following patterns:</p>
<ul class="container">
</ul>
<button class="add" type="button">Add Pattern</button>
<p>Each pattern will be evaluated as a <a href="https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions">JavaScript Regular Expression</a>.</p>
</fieldset>
<fieldset>
<button type="submit">Save</button>
</fieldset>
<fieldset>
<label>Extension Icon Legend</label>
<p class="inline"><img alt="active icon" src="clipboard-active.png" /> - active on current tab</p>
<p class="inline"><img alt="inactive icon" src="clipboard-inactive.png" /> - inactive on current tab</p>
</fieldset>
</form>
<template id="template">
<li>
<input class="deletable input" type="text"/>
<button class="delete" type="button">✖</button>
</li>
</template>
</body>
</html>