chrome-separators icon indicating copy to clipboard operation
chrome-separators copied to clipboard

Chrome Edge will not allow more than 1 separator per folder

Open lopezpa79 opened this issue 3 years ago • 7 comments

Chrome Edge seems to filter out duplicate links in the same folder. To work around this I'm adding a random extra parameter (e.g. &l=1) so that the link is unique.

Might be easy to add a random guid value to the end of the url instead when generating a link for this purpose.

lopezpa79 avatar Feb 02 '22 00:02 lopezpa79

you can probably do so yourself by appending a hashtag (#123) manually in the link, then navigate to it once

kurtextrem avatar Jul 17 '22 08:07 kurtextrem

you can probably do so yourself by appending a hashtag (#123) manually in the link, then navigate to it once

That's an awesome response and it works. It could be added to readme or the explanation page.

inakihn avatar Feb 27 '23 12:02 inakihn

I think this can be implemented in the website itself (like randomizing the hashtag value) instead of manually adding one by one

ynshung avatar Jun 12 '23 18:06 ynshung

HI, I've created an extension called Infinite Bookmark Extensions , which will includes some of your tricks. For Edge browser it adds the time code, Date.now() to avoid duplication.

u can right-click on the listview and choose menu 'add separator' . if you right-click on it, it will add url of your website .

left-click simply adds 'javascript:' as separator.

gif demo, cheers :

KnIfER avatar Oct 12 '23 10:10 KnIfER

HI, I've created an extension called Infinite Bookmark Extensions , which will includes some of your tricks. For Edge browser it adds the time code, Date.now() to avoid duplication.

u can right-click on the listview and choose menu 'add separator' . if you right-click on it, it will add url of your website .

left-click simply adds 'javascript:' as separator.

Just did the same with my PR #15 but I guess the maintainer isn't rly paying attention to this project anymore.

Kamiikaze avatar Oct 12 '23 13:10 Kamiikaze

Unfortunately, #15 introduced a different problem: The icon for the bookmark only appears after clicking the bookmark once. Also, even with #15 you would need to refresh the page (in Edge) before you can add a separator again.

So I've removed the random id part again (for now) until we can find a solution that doesn't break the bookmark's icon.

skrysm avatar Mar 10 '24 12:03 skrysm

Unfortunately, #15 introduced a different problem: The icon for the bookmark only appears after clicking the bookmark once. Also, even with #15 you would need to refresh the page (in Edge) before you can add a separator again.

So I've removed the random id part again (for now) until we can find a solution that doesn't break the bookmark's icon.

I don't see any other option than adding a random string to it. On Opera I dont need to click the icon to display the seperator.

But an solution would be an interval generating the random hash every x second and auto setting the window.location.hash, so the current url and bookmark url is the same and the browser should load the icon correctly?!

Kamiikaze avatar Mar 11 '24 19:03 Kamiikaze