Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions plugin/css/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@
border-bottom: 1px #CCC solid;
}

#extensionVersionSection {
text-align: center;
}

#spanWebToEpubVersion {
display: inline-block;
text-align: center;
}

progress {
width: 56%;
Expand Down
3 changes: 3 additions & 0 deletions plugin/js/Parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 3 additions & 0 deletions plugin/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
</head>
<body>
<div class="container">
<section id="extensionVersionSection">
<span id="spanExtensionVersion"></span>
</section>
<section id="readingListSection" hidden="true">
<button id="closeReadingList">__MSG_button_Close_ReadingList__</button>
<table id="readingListTable">
Expand Down
Loading