From fbcc16a21a94793a8a4cc2102c0010b00f8cd8f0 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 1 Apr 2023 09:11:32 +0200 Subject: [PATCH 1/1] First draft. --- .gitignore | 1 + icons/border-48.png | Bin 0 -> 225 bytes manifest.json | 23 +++++++++++++++++++++++ options.html | 18 ++++++++++++++++++ options.js | 42 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 84 insertions(+) create mode 100644 .gitignore create mode 100644 icons/border-48.png create mode 100644 manifest.json create mode 100644 options.html create mode 100644 options.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5fd42d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.~*~ diff --git a/icons/border-48.png b/icons/border-48.png new file mode 100644 index 0000000000000000000000000000000000000000..90687de26d71e91b7c82565772a7df470ae277a6 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTCmSQK*5Dp-y;YjHK@;M7UB8wRq zxP?KOkzv*x37}xJr;B4qM&sM7j(iOY0?rpNR{Ym~eNUieh4I>d+mEvHuIy!K@bZ41 zJ}N$e^&*#q7kxbW`Aeg?)>n&l0$ z8xrIlb~3+dVExT-N;ZLA=LS%o!8+lf-GRA$F@Klex9jiV-^0Mj@Zdh*s& + + + + + + + +
+ + + +
+ +
+ + + diff --git a/options.js b/options.js new file mode 100644 index 0000000..2091361 --- /dev/null +++ b/options.js @@ -0,0 +1,42 @@ +function saveOptions(e) { + browser.storage.local.set({ + server: document.querySelector("#server").value + }); + e.preventDefault(); +} + +function restoreOptions() { + let gettingItem = browser.storage.local.get('server'); + gettingItem.then((res) => { + document.querySelector("#server").value = res.server || 'https://127.0.0.1:9090'; + }); +} + +function history() { + let list = document.getElementById('history'); + list.innerHTML = ""; + + let li = document.createElement('p'); + li.innerText = "HISTORY"; + list.appendChild(li); + + let searchingHistory = browser.history.search({text: "", maxResults: 5}); + searchingHistory.then((results) => { + if (results.length < 1) { + let li = document.createElement('p'); + li.innerText = "NO HISTORY"; + list.appendChild(li); + } else { + for (let k in results) { + let history = results[k]; + let li = document.createElement('p'); + li.innerText = history.url; + list.appendChild(li); + } + } + }); +} + +document.addEventListener('DOMContentLoaded', restoreOptions); +document.querySelector("form").addEventListener("submit", saveOptions); +document.getElementById("btn_history").addEventListener("click", history); -- 2.49.0