👽 Use badge instead of webiste icon
This commit is contained in:
parent
51f6781142
commit
75cfe0952d
3 changed files with 6 additions and 5 deletions
|
@ -13,7 +13,7 @@
|
|||
<tr>
|
||||
<td>Name</td>
|
||||
<td>URL</td>
|
||||
<td>Icon URL</td>
|
||||
<td>Badge Color</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
|
@ -19,7 +19,7 @@ function buildSpaceElement(app) {
|
|||
|
||||
tr.appendChild(buildInputRow("title", app.title));
|
||||
tr.appendChild(buildInputRow("url", app.url));
|
||||
tr.appendChild(buildInputRow("icon", app.icon));
|
||||
tr.appendChild(buildInputRow("badgeBackgroundColor", app.badgeBackgroundColor));
|
||||
|
||||
const removeTd = document.createElement("td");
|
||||
const removeButton = document.createElement("button");
|
||||
|
@ -46,7 +46,7 @@ function addSpace() {
|
|||
const newApp = {
|
||||
title: "",
|
||||
url: "",
|
||||
icon: "",
|
||||
badgeBackgroundColor: "",
|
||||
};
|
||||
spaces.appendChild(buildSpaceElement(newApp));
|
||||
}
|
||||
|
@ -66,7 +66,7 @@ async function saveChanges(e) {
|
|||
name: hashSpaceName(space.querySelector("input[name='url']").value),
|
||||
title: space.querySelector("input[name='title']").value,
|
||||
url: space.querySelector("input[name='url']").value,
|
||||
icon: space.querySelector("input[name='icon']").value,
|
||||
badgeBackgroundColor: space.querySelector("input[name='badgeBackgroundColor']").value,
|
||||
};
|
||||
apps.push(app);
|
||||
});
|
||||
|
|
|
@ -20,7 +20,8 @@ async function createSpaces() {
|
|||
urls.push(app.url);
|
||||
await browser.spaces.create(app.name, app.url, {
|
||||
title: app.title,
|
||||
defaultIcons: app.icon,
|
||||
badgeText: app.title.substring(0, 2),
|
||||
badgeBackgroundColor: app.badgeBackgroundColor
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue