FuriKani/src/content.js

111 lines
3.4 KiB
JavaScript
Raw Normal View History

2022-03-21 12:34:22 +00:00
// Vocab Furigana CSS
2022-03-20 16:13:22 +00:00
var vocabStyle = `
.furikani-vocabulary {
display: none;
}
`
2022-03-21 12:34:22 +00:00
// Kanji Furigana CSS
2022-03-20 16:13:22 +00:00
var kanjiStyle = `
.furikani-kanji {
display: none;
}
`
2022-03-21 12:34:22 +00:00
// Create stylesheet elements on the website for the classes
2022-03-20 16:13:22 +00:00
var vocabStyleSheet = document.createElement("style")
var kanjiStyleSheet = document.createElement("style")
document.head.appendChild(vocabStyleSheet)
document.head.appendChild(kanjiStyleSheet)
function handleRubyTag(tag, vocabulary, kanji) {
// Copy the ruby element into a new ruby element so we can modify it
// without modifying the website
var ruby = document.createElement("ruby")
ruby.innerHTML = tag.innerHTML;
// Remove all tags (except for <rb>, <span>)
while(ruby.lastElementChild)
{
if(ruby.lastElementChild.tagName.toLowerCase() === "rb" ||
ruby.lastElementChild.tagName.toLowerCase() === "span")
{
ruby.innerHTML = ruby.lastElementChild.innerHTML
break
}
ruby.removeChild(ruby.lastElementChild)
}
// If the contents of the <ruby> tag are in the word list, tag the <rt> tag
// with the correct class
var rtTag = tag.getElementsByTagName("rt").item(0)
if(vocabulary.includes(ruby.innerText))
rtTag.classList.add("furikani-vocabulary")
if(kanji.includes(ruby.innerText))
rtTag.classList.add("furikani-kanji")
}
2022-03-19 20:20:55 +00:00
// Get stored word list from chrome storage
2022-03-20 16:13:22 +00:00
chrome.storage.local.get(["vocabulary", "kanji", "validUserLevel", "enabled", "enabledVocab", "enabledKanji"], (data) => {
2022-03-20 00:12:51 +00:00
// The users level is not valid, e.g. it exceeds the maximum allowed level
// WaniKani requires that devs check if users are actually allowed to access content of this level
2022-03-20 00:04:30 +00:00
if(!data.validUserLevel)
return
2022-03-21 12:34:22 +00:00
// If global setting is enabled, set the stylesheets depending on the other settings
2022-03-20 16:13:22 +00:00
if(data.enabled)
{
if(data.enabledVocab)
2022-04-01 12:07:30 +00:00
vocabStyleSheet.innerText = vocabStyle
2022-03-20 16:13:22 +00:00
if(data.enabledKanji)
2022-04-01 12:07:30 +00:00
kanjiStyleSheet.innerText = kanjiStyle
2022-03-20 16:13:22 +00:00
}
2022-03-19 20:20:55 +00:00
const vocabulary = data.vocabulary
const kanji = data.kanji
2022-03-19 19:07:22 +00:00
let observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
mutation.addedNodes.forEach((node, _key, _parent) => {
if (node.tagName?.toLowerCase() !== "ruby") {
return;
}
2022-03-19 19:07:22 +00:00
handleRubyTag(node, vocabulary, kanji)
})
});
})
2022-03-19 19:07:22 +00:00
observer.observe(document.documentElement, { subtree: true, childList: true });
2022-03-20 16:13:22 +00:00
})
chrome.runtime.onMessage.addListener((msg, sender, sendResponse) => {
2022-03-21 12:34:22 +00:00
// One of the switches was checked/unchecked
2022-03-20 16:13:22 +00:00
if(msg.action === "settingsUpdated")
{
2022-03-21 12:34:22 +00:00
// Retrieve current switch states
2022-03-20 16:13:22 +00:00
chrome.storage.local.get(["enabled", "enabledVocab", "enabledKanji"], (data) => {
2022-03-21 12:34:22 +00:00
// If everything is disabled, disable all stylsheets
2022-03-20 16:13:22 +00:00
if(!data.enabled)
2022-03-19 19:07:22 +00:00
{
2022-04-01 12:07:30 +00:00
vocabStyleSheet.innerText = ""
kanjiStyleSheet.innerText = ""
2022-03-20 16:13:22 +00:00
return
2022-03-19 19:07:22 +00:00
}
2022-03-20 16:13:22 +00:00
2022-03-21 12:34:22 +00:00
// Otherwise set the kanji and vocab stylesheets depending on their settings
2022-04-01 12:07:30 +00:00
vocabStyleSheet.innerText = data.enabledVocab ? vocabStyle : ""
kanjiStyleSheet.innerText = data.enabledKanji ? kanjiStyle : ""
2022-03-20 16:16:36 +00:00
sendResponse(true)
2022-03-20 16:13:22 +00:00
})
2022-03-19 19:07:22 +00:00
}
2022-03-20 16:13:22 +00:00
return true;
})