mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-06-15 12:41:03 +02:00
parent
bf868eb6ae
commit
dfc613db04
@ -187,3 +187,9 @@ td.hideColumn {
|
|||||||
.content .hide:checked ~ .display, .displayHidden:checked ~ .display {
|
.content .hide:checked ~ .display, .displayHidden:checked ~ .display {
|
||||||
background-image: url(notVisible.svg);
|
background-image: url(notVisible.svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.version {
|
||||||
|
text-align: right;
|
||||||
|
color: gray;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
@ -199,4 +199,13 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const version = document.createElement("div");
|
||||||
|
version.className = "version";
|
||||||
|
fetch(browser.extension.getURL("manifest.json")).then(function(response){
|
||||||
|
return response.json();
|
||||||
|
}).then(function(manifest){
|
||||||
|
version.textContent = "Version " + manifest.version;
|
||||||
|
});
|
||||||
|
document.body.appendChild(version);
|
||||||
}());
|
}());
|
||||||
|
@ -3,7 +3,7 @@ Version 0.5.3:
|
|||||||
-
|
-
|
||||||
|
|
||||||
new features:
|
new features:
|
||||||
-
|
- display version in options page
|
||||||
|
|
||||||
fixes:
|
fixes:
|
||||||
-
|
-
|
||||||
|
Loading…
x
Reference in New Issue
Block a user