notes/clipper/clipper.js

7 lines
225 B
JavaScript
Raw Normal View History

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