diff --git a/_locales/de/messages.json b/_locales/de/messages.json index eb08e7d..0f1e179 100644 --- a/_locales/de/messages.json +++ b/_locales/de/messages.json @@ -51,6 +51,10 @@ "message": "Einstellungen", "description": "" }, + "options_title": { + "message": "CanvasBlocker Einstellungen", + "description": "" + }, "optionsIntroduction": { "message": "Auf dieser Seite können Sie die CanvasBlocker-Einstellungen anpassen.", "description": "" diff --git a/_locales/en/messages.json b/_locales/en/messages.json index e753007..7ecf5e2 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -56,6 +56,10 @@ "message": "Settings", "description": "" }, + "options_title": { + "message": "CanvasBlocker settings", + "description": "" + }, "optionsIntroduction": { "message": "On this page you can adjust the settings of CanvasBlocker.", "description": "" diff --git a/options/options.js b/options/options.js index 71eae3e..65021ac 100644 --- a/options/options.js +++ b/options/options.js @@ -107,6 +107,7 @@ }).then(function(tabId){ return browser.tabs.get(tabId); }).then(function(tab){ + document.querySelector("head title").textContent = browser.i18n.getMessage("options_title"); let head = document.createElement("header"); document.body.insertBefore(head, document.body.firstChild);