Code-Injector icon indicating copy to clipboard operation
Code-Injector copied to clipboard

Suggestion: move code editing window out of the extension window, make it a pop up window instead

Open Craftist opened this issue 4 years ago • 1 comments

Chrome's maximum extension window can be 780 or 800 pixels wide. This is simply not enough for the comfortable coding experience. Can you please move the source code editor out of the window into a new window made by window.open? I just tried it and it works:

const w = window.open('', 'Editor', 'resizable,scrollbars,status');
w.document.write('Hello <b>world</b>');

Displays a popup window with Hello world as the text.

Craftist avatar Aug 02 '21 18:08 Craftist

It could also just be a new tab!

capripot avatar Aug 09 '21 23:08 capripot