parent
c3bd18e413
commit
d7fbb1a67f
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Indie Wiki Buddy",
|
||||
"version": "1.1.3",
|
||||
"version": "1.2.0",
|
||||
"description": "Indie Wiki Buddy helps you discover quality, independent wikis through alerts, redirects, and search filtering.",
|
||||
"permissions": [
|
||||
"storage",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Indie Wiki Buddy",
|
||||
"version": "1.1.3",
|
||||
"version": "1.2.0",
|
||||
"description": "Indie Wiki Buddy helps you discover quality, independent wikis through alerts, redirects, and search filtering.",
|
||||
"permissions": [
|
||||
"storage",
|
||||
|
|
|
@ -243,7 +243,7 @@
|
|||
<div class="footer">
|
||||
You have been notified of indie wikis <span id="countAlerts"></span> times and redirected <span id="countRedirects"></span> times. Search results have been filtered <span id="countSearchFilters"></span> times.
|
||||
<br />
|
||||
<a href="https://getindie.wiki/" target="_blank">Info & Help</a> | <a href="https://getindie.wiki/changelog/" target="_blank">Changelog</a> | <a href="https://form.getindie.wiki/" target="_blank">Submit a Wiki</a> | <a href="https://github.com/KevinPayravi/indie-wiki-buddy" target="_blank">Source Code</a>
|
||||
<span id="version"></span> | <a href="https://getindie.wiki/" target="_blank">Info & Help</a> | <a href="https://getindie.wiki/changelog/" target="_blank">Changelog</a> | <a href="https://form.getindie.wiki/" target="_blank">Submit a Wiki</a> | <a href="https://github.com/KevinPayravi/indie-wiki-buddy" target="_blank">Source Code</a>
|
||||
</div>
|
||||
</body>
|
||||
<script type="text/javascript" src="popup.js"></script>
|
||||
|
|
4
popup.js
4
popup.js
|
@ -408,6 +408,10 @@ function setBreezeWiki(setting) {
|
|||
|
||||
// Main function that runs on-load
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
// Adding version to popup:
|
||||
const version = chrome.runtime.getManifest().version;
|
||||
document.getElementById('version').textContent = 'v' + version;
|
||||
|
||||
// Get user's last set language
|
||||
chrome.storage.sync.get({ 'lang': 'EN' }, function (item) {
|
||||
langSelect.value = item.lang;
|
||||
|
|
Loading…
Reference in New Issue