From aa8a8d1bbc2425c2f4ddc4dc08f3ff22716ad11e Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Mon, 8 Jan 2024 16:24:34 +0100 Subject: [PATCH] added: date in clipper --- clipper/clipper.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clipper/clipper.js b/clipper/clipper.js index 290a74e..70ecb03 100644 --- a/clipper/clipper.js +++ b/clipper/clipper.js @@ -3,7 +3,8 @@ javascript: (function() var notesurl = ""; var bm = { title: document.title, - url: document.location.href + url: document.location.href, + time: Date.now() }; window.open("https://" + notesurl + "?c=" + encodeURIComponent(JSON.stringify(bm)), "_blank", "popup,width=100,height=100"); })();