Add reminder for crates manage page

This commit is contained in:
Folyd 2021-08-04 23:15:13 +08:00
parent 051085e821
commit 9301dbb890

View file

@ -159,7 +159,13 @@ function insertAddToExtensionElement(state) {
};
let content, iconAttributes, iconFile;
if (state === "latest") {
content = `<p>You already added this crate (v${installedVersion}). Click again to remove it.</p>`;
content = `<p>
You already added this crate (v${installedVersion}). Click again to remove it.
Or click
<a style="text-decoration: underline" target="_blank"
href="${chrome.runtime.getURL("manage/crates.html")}">here</a>
to manage all your indexed crates.
</p>`;
iconAttributes = `class="fa-svg fa-svg-fw" style="color:green"`;
iconFile = SVG_CHECK_CIRCLE;
} else if (state === "outdated") {