<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[HyperForum — [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
	<link rel="self" href="https://forums.hyperbola.info/extern.php?action=feed&amp;tid=663&amp;type=atom" />
	<updated>2023-06-30T18:01:29Z</updated>
	<generator>PunBB</generator>
	<id>https://forums.hyperbola.info/viewtopic.php?id=663</id>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=6340#p6340" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2023-06-30T18:01:29Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=6340#p6340</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=6258#p6258" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2023-06-03T02:55:00Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=6258#p6258</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=6253#p6253" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[HarvettFox96]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=74</uri>
			</author>
			<updated>2023-06-03T01:39:22Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=6253#p6253</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=6247#p6247" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2023-06-02T18:03:02Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=6247#p6247</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=6244#p6244" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2023-06-02T13:04:43Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=6244#p6244</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=6243#p6243" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[HarvettFox96]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=74</uri>
			</author>
			<updated>2023-06-02T12:40:28Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=6243#p6243</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=6242#p6242" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2023-06-02T09:57:09Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=6242#p6242</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=4638#p4638" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2022-06-11T10:38:13Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=4638#p4638</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=4589#p4589" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2022-06-01T05:29:19Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=4589#p4589</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=4492#p4492" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2022-05-10T05:14:19Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=4492#p4492</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=4453#p4453" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[anthk]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=568</uri>
			</author>
			<updated>2022-04-28T13:18:32Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=4453#p4453</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=4350#p4350" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Mesh Malachi]]></name>
			</author>
			<updated>2022-04-11T01:49:43Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=4350#p4350</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=4343#p4343" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[aloniv]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=387</uri>
			</author>
			<updated>2022-04-08T05:28:50Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=4343#p4343</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=4328#p4328" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[zapper]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=117</uri>
			</author>
			<updated>2022-04-07T21:05:28Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=4328#p4328</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Hyperbola 0.4] Iceape-UXP - useful tweaks]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=4323#p4323" />
			<content type="html"><![CDATA[<p>thx a lot for foxyproxy !</p>]]></content>
			<author>
				<name><![CDATA[the_hype]]></name>
			</author>
			<updated>2022-04-07T13:34:46Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=4323#p4323</id>
		</entry>
</feed>
