Lea Rosema on Nostr: You can turn chrome into something like the good old Microsoft Frontpage WYSIWYG ...
You can turn chrome into something like the good old Microsoft Frontpage WYSIWYG editor.
Just navigate to about:blank and add a couple of bookmarklets to your favbar:
Enter Designmode
javascript:void(document.body.setAttribute('contenteditable',''));
Format Selected text as H1:
javascript:document.execCommand('formatBlock', false, '<h1>');
(add H2, b, i, u, whatever you need)
Insert pre-made HTML-Snippets at the cursor:
javascript:document.execCommand('insertHTML', ...);
Just navigate to about:blank and add a couple of bookmarklets to your favbar:
Enter Designmode
javascript:void(document.body.setAttribute('contenteditable',''));
Format Selected text as H1:
javascript:document.execCommand('formatBlock', false, '<h1>');
(add H2, b, i, u, whatever you need)
Insert pre-made HTML-Snippets at the cursor:
javascript:document.execCommand('insertHTML', ...);