Skip to content

Commit 269d631

Browse files
authored
Link extension options page to extension docs (#101)
1 parent 4c5415b commit 269d631

File tree

4 files changed

+24
-13
lines changed

4 files changed

+24
-13
lines changed

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tabWidth": 2,
3+
"useTabs": false,
4+
"singleAttributePerLine": false,
5+
"printWidth": 120
6+
}

crx/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Capo: get your ﹤𝚑𝚎𝚊𝚍﹥ in order",
44
"description": "Visualize the optimal ordering of ﹤𝚑𝚎𝚊𝚍﹥ elements on any web page",
5-
"version": "1.4.10",
5+
"version": "1.4.11",
66
"permissions": [
77
"scripting",
88
"activeTab",

crx/options/options.html

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,40 @@
22
<html>
33
<head>
44
<title>Capo Options</title>
5-
<link rel="stylesheet" href="../styles/open-props.css">
6-
<link rel="stylesheet" href="options.css">
5+
<link rel="stylesheet" href="../styles/open-props.css" />
6+
<link rel="stylesheet" href="options.css" />
77
</head>
88
<body class="surface-1">
99
<form id="options">
1010
<header>
1111
<h1>Capo options</h1>
1212
</header>
13-
<input id="prefer-static" name="prefer-static" type="checkbox" class="option">
13+
<input id="prefer-static" name="prefer-static" type="checkbox" class="option" />
1414
<label for="prefer-static">
15-
Prefer to evaluate the static, server-rendered <code>&lt;head></code>
16-
(<a href="https://rviscomi.github.io/capo.js/user/config/#static-and-dynamic-evaluation">learn more</a>)
15+
Prefer to evaluate the static, server-rendered
16+
<code>&lt;head></code> (<a href="https://rviscomi.github.io/capo.js/user/config/#static-and-dynamic-evaluation"
17+
>learn more</a
18+
>)
1719
</label>
1820

19-
<input id="validation" name="validation" type="checkbox" class="option">
21+
<input id="validation" name="validation" type="checkbox" class="option" />
2022
<label for="validation">
21-
Validate the elements in the <code>&lt;head></code>
22-
(<a href="https://rviscomi.github.io/capo.js/user/config/#validation">learn more</a>)
23+
Validate the elements in the <code>&lt;head></code> (<a
24+
href="https://rviscomi.github.io/capo.js/user/config/#validation"
25+
>learn more</a
26+
>)
2327
</label>
2428

2529
<select id="palette" name="palette" class="option"></select>
2630
<label for="palette">
27-
Color palette
28-
(<a href="https://rviscomi.github.io/capo.js/user/config/#built-in-color-palettes">learn more</a>)
31+
Color palette (<a href="https://rviscomi.github.io/capo.js/user/config/#built-in-color-palettes">learn more</a>)
2932
</label>
3033

3134
<footer>
3235
<p>Options saved automatically</p>
33-
<p><a href="https://rviscomi.github.io/capo.js/">rviscomi/capo.js</a></p>
36+
<p>
37+
<a href="https://rviscomi.github.io/capo.js/user/extension/">rviscomi/capo.js</a>
38+
</p>
3439
</footer>
3540
</form>
3641
<script src="options.js" type="module"></script>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rviscomi/capo.js",
3-
"version": "1.4.10",
3+
"version": "1.4.11",
44
"description": "Get your ﹤𝚑𝚎𝚊𝚍﹥ in order",
55
"author": "Rick Viscomi",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)