Isaiah Billingsley
Isaiah Billingsley
Next time this happens, can you try pressing Command+Shift+J to open the console and let me know if there are any messages shown?
Firefox supports FileSystemFileHandle.createWritable as of version 111. https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API#browser_compatibility (As a workaround there is [@types/wicg-file-system-access](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/wicg-file-system-access/index.d.ts))
I made a Windows 10 theme: https://github.com/ibillingsley/RetroBar-Themes  It's not perfect, but feel free to use it as a starting point.
Yes I am planning on adding this feature; thanks for the feedback.
Nothing in HNTP syncs currently. For now, you'll have to re-do the layout of your page on each new machine.
Development has sort of stalled due to personal reasons but I haven't abandoned it. I can't give an estimate but I'm working toward a major update that will include this....
In theory, yes. The hard parts are: - localStorage is synchronous, chrome.storage is async (takes a callback), so it's not as simple as find-and-replace - Preserving the user's existing settings....
I am planning to make the layout system more flexible eventually. It is possible with custom CSS. For example, the following will set the width of the second column to...
You can do something like: ```css /* Split the first column into 2, using 50% of total width (assuming 2 other columns) */ .column:nth-child(1) { column-count: 2; width: 50% !important;...
For now you can use the "Custom CSS" feature in Options > Advanced. Disable favicons: ``` #main img { display: none; } ``` Disable all icons: ``` #main .icon {...