notes/clipper/clipper.js

10 lines
249 B
JavaScript
Raw Normal View History

2024-01-05 14:12:08 +01:00
javascript: (function()
{
var notesurl = "";
var bm = {
title: document.title,
url: document.location.href
};
window.open("https://" + notesurl + "?c=" + encodeURIComponent(JSON.stringify(bm)), "_blank", "popup,width=100,height=100");
2024-01-05 14:12:08 +01:00
})();