<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Sort Bookmarks by date on OperaGX?]]></title><description><![CDATA[<p dir="auto">Sort Bookmarks by date on OperaGX?</p>
<p dir="auto">Is this possible? I currently append the following script to the end of the exported bookmark html file, but this should be a feature...</p>
<pre><code>&lt;h1&gt;Sorted&lt;/h1&gt;
&lt;div class="right3"&gt;&lt;/div&gt;
&lt;p&gt;
&lt;script&gt;
    let addDate = document.querySelectorAll('[ADD_DATE]')
    Array.from(addDate).sort((a,b)=&gt;{       
        a = new Date(parseInt(a.attributes.add_date.nodeValue)).valueOf()
        b = new Date(parseInt(b.attributes.add_date.nodeValue)).valueOf()
        return a-b;
    }).forEach(el =&gt; {
        document.querySelector('.right3').appendChild(el)
    })
&lt;/script&gt;
&lt;style&gt;
    a{
      	display: block;
        margin-top: 1em;
        margin-bottom: 1em;
        margin-left: 0;
        margin-right: 0;
    }
&lt;/style&gt;
</code></pre>
]]></description><link>https://forums.opera.com/topic/62369/sort-bookmarks-by-date-on-operagx</link><generator>RSS for Node</generator><lastBuildDate>Sun, 07 Jun 2026 03:22:05 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/62369.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 12 May 2023 16:44:04 GMT</pubDate><ttl>60</ttl></channel></rss>