diff --git a/plugin/css/default.css b/plugin/css/default.css index d94a43834..6448527f2 100644 --- a/plugin/css/default.css +++ b/plugin/css/default.css @@ -30,6 +30,14 @@ border-bottom: 1px #CCC solid; } +#extensionVersionSection { + text-align: center; +} + +#spanWebToEpubVersion { + display: inline-block; + text-align: center; +} progress { width: 56%; diff --git a/plugin/js/Parser.js b/plugin/js/Parser.js index c03af3854..72b298ef9 100644 --- a/plugin/js/Parser.js +++ b/plugin/js/Parser.js @@ -208,6 +208,9 @@ class Parser { } populateUI(dom) { + let versionElement = document.getElementById("spanExtensionVersion"); + versionElement.textContent = `WebToEpub v${util.extensionVersion()}`; + CoverImageUI.showCoverImageUrlInput(true); let coverUrl = this.findCoverImageUrl(dom); CoverImageUI.setCoverImageUrl(coverUrl); diff --git a/plugin/popup.html b/plugin/popup.html index 948c5b77d..cff8c8c1a 100644 --- a/plugin/popup.html +++ b/plugin/popup.html @@ -10,6 +10,9 @@