From 8261b67ad7028c65a6771c07c50d30591151b198 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Fri, 1 Apr 2022 13:57:59 +0200 Subject: [PATCH 1/4] firefox compatibility --- manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 09bc8c5..ba59a81 100644 --- a/manifest.json +++ b/manifest.json @@ -7,8 +7,8 @@ "48": "res/icon48.png", "128": "res/icon128.png" }, - "manifest_version": 3, - "action": { + "manifest_version": 2, + "browser_action": { "default_popup": "src/popup.html" }, "content_scripts": [ @@ -18,7 +18,7 @@ } ], "background": { - "service_worker": "src/background.js" + "scripts": ["src/background.js"] }, "permissions": ["storage"] } \ No newline at end of file From fbf68d06d5edaa5bf9f0e9e499b74d9f28b8b38a Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Fri, 1 Apr 2022 14:04:36 +0200 Subject: [PATCH 2/4] Added firefox styles --- src/styles.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles.css b/src/styles.css index 2ada625..a8bb4fc 100644 --- a/src/styles.css +++ b/src/styles.css @@ -4,7 +4,8 @@ padding: 0px; box-sizing: border-box; border-radius: 0px; - color: #ECB365 + color: #ECB365; + font-family: "Segoe UI", Tahoma, sans-serif; } body From 4d67d66d8e4425a485a472d1aa9b60efd01c3bdd Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Fri, 1 Apr 2022 14:07:30 +0200 Subject: [PATCH 3/4] replaced innerHTML with innerText --- src/content.js | 12 ++++++------ src/popup.js | 26 +++++++++++++------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/content.js b/src/content.js index e100d03..9fb24bd 100644 --- a/src/content.js +++ b/src/content.js @@ -30,10 +30,10 @@ chrome.storage.local.get(["vocabulary", "kanji", "validUserLevel", "enabled", "e if(data.enabled) { if(data.enabledVocab) - vocabStyleSheet.innerHTML = vocabStyle + vocabStyleSheet.innerText = vocabStyle if(data.enabledKanji) - kanjiStyleSheet.innerHTML = kanjiStyle + kanjiStyleSheet.innerText = kanjiStyle } const vocabulary = data.vocabulary @@ -81,15 +81,15 @@ chrome.runtime.onMessage.addListener((msg, sender, sendResponse) => { // If everything is disabled, disable all stylsheets if(!data.enabled) { - vocabStyleSheet.innerHTML = "" - kanjiStyleSheet.innerHTML = "" + vocabStyleSheet.innerText = "" + kanjiStyleSheet.innerText = "" return } // Otherwise set the kanji and vocab stylesheets depending on their settings - vocabStyleSheet.innerHTML = data.enabledVocab ? vocabStyle : "" - kanjiStyleSheet.innerHTML = data.enabledKanji ? kanjiStyle : "" + vocabStyleSheet.innerText = data.enabledVocab ? vocabStyle : "" + kanjiStyleSheet.innerText = data.enabledKanji ? kanjiStyle : "" sendResponse(true) }) diff --git a/src/popup.js b/src/popup.js index faf61a8..430027f 100644 --- a/src/popup.js +++ b/src/popup.js @@ -12,31 +12,31 @@ chrome.storage.local.get(["level", "token", "enabled", "enabledVocab", "enabledK // If no token is set, display exlamation mark and checkmark button if(data.token === undefined) { - statusField.innerHTML = String.fromCodePoint(0x2757) - submitButton.innerHTML = String.fromCodePoint(0x2705) + statusField.innerText = String.fromCodePoint(0x2757) + submitButton.innerText = String.fromCodePoint(0x2705) submitButton.classList.add("no-token") } else // else display checkmark and reload button { - statusField.innerHTML = String.fromCodePoint(0x2705) - submitButton.innerHTML = String.fromCodePoint(0x1F501) + statusField.innerText = String.fromCodePoint(0x2705) + submitButton.innerText = String.fromCodePoint(0x1F501) } // Display the users current WaniKani level const levelSpan = document.getElementById("level") - levelSpan.innerHTML = data.level + levelSpan.innerText = data.level // If the input field contains text that is not the current token, turn the // button into a checkmark (else turn it into a repeat button) inputField.addEventListener("input", () => { if(inputField.value !== "" && inputField.value !== data.token) { - submitButton.innerHTML = String.fromCodePoint(0x2705) + submitButton.innerText = String.fromCodePoint(0x2705) submitButton.classList.add("new-token") } else { - submitButton.innerHTML = String.fromCodePoint(0x1F501) + submitButton.innerText = String.fromCodePoint(0x1F501) submitButton.classList.remove("new-token") } }) @@ -60,25 +60,25 @@ submitButton.addEventListener( "click", () => { if(submitButton.classList.contains("no-token")) return - statusField.innerHTML = String.fromCodePoint(0x23F1) + statusField.innerText = String.fromCodePoint(0x23F1) // Sync with wanikani chrome.runtime.sendMessage("", {type: "sync"}, response => { if(response.success) { - statusField.innerHTML = String.fromCodePoint(0x2705) - errorField.innerHTML = "" + statusField.innerText = String.fromCodePoint(0x2705) + errorField.innerText = "" // Update the users current WaniKani level chrome.storage.local.get("level", (data) => { const levelSpan = document.getElementById("level") - levelSpan.innerHTML = data.level + levelSpan.innerText = data.level }) } else { - statusField.innerHTML = String.fromCodePoint(0x2757) - errorField.innerHTML = response.error + statusField.innerText = String.fromCodePoint(0x2757) + errorField.innerText = response.error } }) }) From 60a2943d2dd22822d58bb1e1d3386c2170cdc167 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Fri, 1 Apr 2022 14:09:24 +0200 Subject: [PATCH 4/4] v0.7 --- VERSIONS.md | 6 +++++- manifest.json | 2 +- src/popup.html | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/VERSIONS.md b/VERSIONS.md index c133214..3d3c46e 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -10,4 +10,8 @@ ## v0.6.3 * Startup sync check is now more consistent * Level number updates in realtime after sync - * Fixed bug where internal Kanji list would get reset on sync \ No newline at end of file + * Fixed bug where internal Kanji list would get reset on sync + +# v0.7 + * FuriKani now supports Firefox! + * Fixed potential innerHTML risks \ No newline at end of file diff --git a/manifest.json b/manifest.json index ba59a81..770898f 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "FuriKani", "description": "Removes furigana on websites based on your WaniKani level", - "version": "0.6.3", + "version": "0.7", "icons": { "16": "res/icon16.png", "48": "res/icon48.png", diff --git a/src/popup.html b/src/popup.html index f0e235f..1ef9b4b 100644 --- a/src/popup.html +++ b/src/popup.html @@ -6,7 +6,7 @@

FuriKani

-

v0.6.3

+

v0.7