function newrow(w) {
let tt = document.getElementsByTagName('tbody')[0];
let tr = tt.insertRow(tt.rows.length);
tr.innerHTML = w;
}
document.addEventListener('DOMContentLoaded', () => {
chrome.storage.local.get(['ul'], (r) => {
fetch('i18n/' + (r.ul || 'eo') + '.json', {
method: 'GET'
}).then(j => j.json()).then(j => {
document.querySelectorAll('span[transk]').forEach(x => {
x.innerText = j[x.getAttribute('transk')];
});
newrow('
FQDN | ' + j['lj1'] + ' | ' + j['lj2'] + ' | ' + j['lj3'] + ' | ' + j['lj4'] + ' |
');
chrome.runtime.sendMessage('get', g => {
for (let k in g) {
newrow('' + k + ' | ' + g[k][1] + ' | ' + g[k][2] + ' | 🔗 | ' + g[k][3] + ' |
');
document.getElementById('export').innerHTML += k + "\n";
}
});
document.body.style.display = 'block';
});
});
document.getElementById('clear').addEventListener('click', () => {
chrome.runtime.sendMessage('clear', () => {
location.reload(true);
});
});
document.getElementById('myul').addEventListener('change', () => {
if (document.getElementById('myul').value != '') {
chrome.storage.local.set({
'ul': document.getElementById('myul').value
}, () => {
location.reload(true);
});
}
});
});