>>106665112
Berry is extremely customizable but crashes when there are too many tabs. Here's how I set it up. Swipe on the URL -next/previous tab. Long press on reload = search, long press on back/forward - scroll to top/bottom, long press on menu - new tab. Via is close but doesn't have "save link" in the context menu, and I save pictures all the time. A userscript to get full resolution images on the mobile version
// ==UserScript==
// @name 4ch images
// @namespace asdasasd
// @description ajsjddjjd
// @include https://boards.4chan.org/*
// @include http://boards.4chan.org/*
// @include https://boards.4channel.org/*
// @include http://boards.4channel.org/*
// @run-at document-end
// ==/UserScript==
(function() {
ImageExpansion.setMobileSrc = function(e) {
var t;
return e.removeAttribute("data-m"),
t = (t = e.getAttribute("href")),
e.setAttribute("href", t),
t
}
})();