Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.

Commit b1b28ad

Browse files
ttyridalTorbjorn Tyridal
authored andcommitted
Chrome 40+ style settings
1 parent a877116 commit b1b28ad

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

ext/manifest.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
},
2020
"incognito": "split",
2121
"options_page": "src/options/index.html",
22+
"options_ui": {
23+
"page": "src/options/options.html",
24+
"chrome_style": true
25+
},
2226
"browser_action": {
2327
"default_icon": "icons/icon19.png",
2428
"default_title": "MasterPassword",

ext/src/options/options.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title></title>
5+
<meta charset="UTF-8">
6+
</head>
7+
<body>
8+
<dl>
9+
<dt><label for="passwdtype">Default password type</label><dd>
10+
<select id="passwdtype">
11+
<option value="x">Maximum
12+
<option value="l" selected>Long
13+
<option value="m">Medium
14+
<option value="b">Basic
15+
<option value="s">Short
16+
<option value="i">Pin
17+
<option value="n">Name
18+
<option value="p">Phrase
19+
</select>
20+
</dl>
21+
<script src="../../js/jquery-2.1.3.min.js"></script>
22+
<script src="options.js"></script>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)