<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[HyperForum — [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
		<link>https://forums.hyperbola.info/viewtopic.php?id=663</link>
		<atom:link href="https://forums.hyperbola.info/extern.php?action=feed&amp;tid=663&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in [Hyperbola 0.4] Iceape-UXP - useful tweaks.]]></description>
		<lastBuildDate>Fri, 30 Jun 2023 18:01:29 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=6340#p6340</link>
			<description><![CDATA[<p>Cookies Exterminator also appears to work. Just save the file and then open with the browser to install in Iceape.<br /><a href="https://github.com/JustOff/cookies-exterminator/releases/download/2.9.10/cookexterm-2.9.10.xpi">https://github.com/JustOff/cookies-exte … 2.9.10.xpi</a></p>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Fri, 30 Jun 2023 18:01:29 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=6340#p6340</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=6258#p6258</link>
			<description><![CDATA[<p>HarvettFox96: I&#039;m glad the script works for you! What&#039;s the difference between the image formats (e.g. mq1.jpg, mq2.jpg, mq3.jpg and mqdefault.jpg)? Do they simply indicate different start positions such as first/middle/last frames? I&#039;m guessing for non-live streams the need to switch thumbnails isn&#039;t essential.</p>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Sat, 03 Jun 2023 02:55:00 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=6258#p6258</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=6253#p6253</link>
			<description><![CDATA[<p>It finally worked great. Thanks for saving my life away from cringe and clickbait junk. However, there&#039;s one minor issue where every livestream video doesn&#039;t have a different thumbnail being generated.</p>]]></description>
			<author><![CDATA[null@example.com (HarvettFox96)]]></author>
			<pubDate>Sat, 03 Jun 2023 01:39:22 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=6253#p6253</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=6247#p6247</link>
			<description><![CDATA[<p>A user script that redirects to privacy services already exists and can be found here (just edit the source and select the preferred redirectors such as invidious and teddit):<br /><a href="https://greasyfork.org/en/scripts/436359-privacy-redirector">https://greasyfork.org/en/scripts/43635 … redirector</a></p>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Fri, 02 Jun 2023 18:03:02 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=6247#p6247</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=6244#p6244</link>
			<description><![CDATA[<p>HarvettFox96: What you asked can be achieved - a method to achieve it was posted here:<br /><a href="https://stackoverflow.com/questions/62737051/greasemonkey-script-to-replace-image-url">https://stackoverflow.com/questions/627 … -image-url</a><br />This script should fulfil your requirements (and is compatible with the Invidious instances used by Privacy Redirect userscript which appears in the next post). You can add more Invidious instances by adding @include lines.<br /></p><div class="codebox"><pre><code>// ==UserScript==
// @name        Invidious display alternate image
// @description Redirects Invidious image to alternate
// @include     https://invidious*
// @include     https://yewtu.be*
// @include     https://vid.puffyan.us*
// @version     1
// @grant       none
// ==/UserScript==
var links = document.getElementsByTagName(&quot;img&quot;);
for(var i = 0, l = links.length; i &lt; l; i++) {
var images = links[i];
images.src= images.src.replace(&#039;mqdefault.jpg&#039;,&#039;mq2.jpg&#039;);
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Fri, 02 Jun 2023 13:04:43 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=6244#p6244</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=6243#p6243</link>
			<description><![CDATA[<p>Is there a script replacing all video thumbnails with <a href="https://invidious.snopyta.org/vi/ez5cuTz0tok/mq2.jpg">mq2.jpg</a> from <a href="https://invidious.snopyta.org/vi/ez5cuTz0tok/mqdefault.jpg">mqdefault.jpg</a> for any Invidious instance?</p>]]></description>
			<author><![CDATA[null@example.com (HarvettFox96)]]></author>
			<pubDate>Fri, 02 Jun 2023 12:40:28 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=6243#p6243</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=6242#p6242</link>
			<description><![CDATA[<p>Apparently, there is an easy way via Greasemonkey to redirect websites.For example, redirecting twitter.com to nitter.fdn.fr can be achieved as follows:<br /></p><div class="codebox"><pre><code>// ==UserScript==
// @name        Twitter to Nitter
// @description Redirects twitter.com to nitter.fdn.fr
// @include     https://twitter.com/*
// @version     1
// @grant       none
// ==/UserScript==
var oldurl = document.URL;
var newurl = oldurl.replace(&#039;twitter.com&#039;,&#039;nitter.fdn.fr&#039;);
window.location.href = newurl;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Fri, 02 Jun 2023 09:57:09 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=6242#p6242</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=4638#p4638</link>
			<description><![CDATA[<p>Some websites require JavaScript to display maths equations. The following Greasemonkey user script called &quot;Display LaTeX&quot; converts LaTeX equations to MathML so stackexchange and similar websites can display maths equations without JavaScript. You need to add the domains you wish to run the user script with in the user settings (or add the domains to the source code of the user script). I couldn&#039;t find the user script online so I copied the text to dpaste (just save the text as display-latex.user.js and open the file with the browser to install the script)<br /><a href="https://dpaste.com/AGTWAW7MH">https://dpaste.com/AGTWAW7MH</a><br />Here&#039;s a stackexchange web page with the script disabled<br /><span class="postimg"><img src="https://i.imgur.com/7EwxdnI.jpg" alt="https://i.imgur.com/7EwxdnI.jpg" /></span><br />and here it is when enabled<br /><span class="postimg"><img src="https://i.imgur.com/eBxkqiI.jpg" alt="https://i.imgur.com/eBxkqiI.jpg" /></span></p>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Sat, 11 Jun 2022 10:38:13 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=4638#p4638</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=4589#p4589</link>
			<description><![CDATA[<p>Another useful Greasemonkey script (that works with Iceape with the Greasemonkey version posted above) is AdsBypasser which bypasses websites such as adf.ly and linkbucks.<br /><a href="https://adsbypasser.github.io/">https://adsbypasser.github.io/</a></p>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Wed, 01 Jun 2022 05:29:19 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=4589#p4589</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=4492#p4492</link>
			<description><![CDATA[<p>Some websites require Cloudfare captchas to work but this can sometimes be overcome by overriding the user agent of the website, e.g. for website.com create in about:config the string<br /></p><div class="codebox"><pre><code>general.useragent.override.website.com</code></pre></div><p>with the following value <br /></p><div class="codebox"><pre><code>Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:100.0) Gecko/20100101 Firefox/100.0</code></pre></div><p>(replace website.com with the website you want.)</p>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Tue, 10 May 2022 05:14:19 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=4492#p4492</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=4453#p4453</link>
			<description><![CDATA[<p>On Iceape, can it be configured with GNUPG support?</p><p>Maybe by packaging Enigmail for Iceape we could get a <br />good browser + mail client combo.</p><p>Yes, Claws Mail works, but Iceape it&#039;s a good alternative too.</p>]]></description>
			<author><![CDATA[null@example.com (anthk)]]></author>
			<pubDate>Thu, 28 Apr 2022 13:18:32 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=4453#p4453</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=4350#p4350</link>
			<description><![CDATA[<div class="quotebox"><cite>aloniv wrote:</cite><blockquote><p>By default, Stack Exchange and similar websites display a cookies pop-up whenever you visit them,</p></blockquote></div><p>At least one of them can be hidden with CSS:</p><div class="codebox"><pre><code>div.js-consent-banner {display: none !important; }</code></pre></div><p>This is what I use for stackoverflow.</p>]]></description>
			<author><![CDATA[null@example.com (Mesh Malachi)]]></author>
			<pubDate>Mon, 11 Apr 2022 01:49:43 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=4350#p4350</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=4343#p4343</link>
			<description><![CDATA[<div class="quotebox"><cite>zapper wrote:</cite><blockquote><p>I thought anti adblock killer was completely dead...</p><p>I checked a bit ago, seems I was right. The continued version, same thing, etc...</p><p>Did you perhaps modify it to make it functional again?</p><p>That would be very nice to have if so.</p></blockquote></div><p>It doesn&#039;t appear to still be in active development but it still works on a few websites I use to download files such as mixloads.com.</p>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Fri, 08 Apr 2022 05:28:50 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=4343#p4343</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=4328#p4328</link>
			<description><![CDATA[<p>I thought anti adblock killer was completely dead...</p><p>I checked a bit ago, seems I was right. The continued version, same thing, etc...</p><p>Did you perhaps modify it to make it functional again?</p><p>That would be very nice to have if so.</p>]]></description>
			<author><![CDATA[null@example.com (zapper)]]></author>
			<pubDate>Thu, 07 Apr 2022 21:05:28 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=4328#p4328</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?pid=4323#p4323</link>
			<description><![CDATA[<p>thx a lot for foxyproxy !</p>]]></description>
			<author><![CDATA[null@example.com (the_hype)]]></author>
			<pubDate>Thu, 07 Apr 2022 13:34:46 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?pid=4323#p4323</guid>
		</item>
	</channel>
</rss>
