diff --git a/manifest.json b/manifest.json
index 74a75d2..0fde62d 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "EachWord Translator - expand your vocabulary",
"short_name": "EachWord Translator",
- "version": "2.0.2",
+ "version": "2.0.3",
"description": "__MSG_description__",
"default_locale": "en",
"icons": {
diff --git a/popup.js b/popup.js
index 76b0bb1..d4323fc 100644
--- a/popup.js
+++ b/popup.js
@@ -116,10 +116,10 @@ function addWordToList(word, translation) {
let wordsBlock = document.getElementById("wordsBlock");
li = document.createElement("li");
- li.innerHTML = "" +
- "" +
- "" +
- "";
+ li.innerHTML = '' +
+ '' +
+ '' +
+ '';
wordsBlock.insertBefore(li, wordsBlock.firstChild);
return li;