mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-01-03 10:31:54 +01:00
parent
635912c8b9
commit
34019f2515
@ -43,6 +43,10 @@
|
|||||||
"message": "CanvasBlocker wurde aktualisiert. Wenn Sie diese Seite in Zukunft erreichen wollen und noch kein Lesezeichen erstellt haben, erstellen Sie bitte eines.",
|
"message": "CanvasBlocker wurde aktualisiert. Wenn Sie diese Seite in Zukunft erreichen wollen und noch kein Lesezeichen erstellt haben, erstellen Sie bitte eines.",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
|
"openInTab": {
|
||||||
|
"message": "In separatem Tab öffnen",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
|
||||||
"section_asking": {
|
"section_asking": {
|
||||||
"message": "Nachfragen",
|
"message": "Nachfragen",
|
||||||
|
@ -43,6 +43,10 @@
|
|||||||
"message": "CanvasBlocker was updated. If you want to be able to access this page in the future and have not bookmarked it, please bookmark it.",
|
"message": "CanvasBlocker was updated. If you want to be able to access this page in the future and have not bookmarked it, please bookmark it.",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
|
"openInTab": {
|
||||||
|
"message": "Open in separate tab",
|
||||||
|
"description": ""
|
||||||
|
},
|
||||||
|
|
||||||
"section_asking": {
|
"section_asking": {
|
||||||
"message": "Asking",
|
"message": "Asking",
|
||||||
|
@ -188,6 +188,17 @@ td.hideColumn {
|
|||||||
background-image: url(notVisible.svg);
|
background-image: url(notVisible.svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.optionsLink {
|
||||||
|
text-align: right;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
.optionsLink a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.optionsLink a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
.version {
|
.version {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
color: gray;
|
color: gray;
|
||||||
|
@ -71,6 +71,16 @@
|
|||||||
|
|
||||||
document.body.classList.add("standalone");
|
document.body.classList.add("standalone");
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
const linkDiv = document.createElement("div");
|
||||||
|
linkDiv.className = "optionsLink";
|
||||||
|
const link = document.createElement("a");
|
||||||
|
link.href = window.location.href;
|
||||||
|
link.target = "_blank";
|
||||||
|
link.textContent = browser.i18n.getMessage("openInTab");
|
||||||
|
linkDiv.appendChild(link);
|
||||||
|
head.appendChild(linkDiv);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var table = document.createElement("table");
|
var table = document.createElement("table");
|
||||||
|
@ -4,6 +4,7 @@ Version 0.5.3:
|
|||||||
|
|
||||||
new features:
|
new features:
|
||||||
- display version in options page
|
- display version in options page
|
||||||
|
- added link to open options page in separate tab
|
||||||
|
|
||||||
fixes:
|
fixes:
|
||||||
- CSP did not work properly for worker-src
|
- CSP did not work properly for worker-src
|
||||||
|
Loading…
x
Reference in New Issue
Block a user