aboutsummaryrefslogtreecommitdiff
path: root/build/safari-extensions-catalina-patcher
diff options
context:
space:
mode:
Diffstat (limited to 'build/safari-extensions-catalina-patcher')
-rw-r--r--build/safari-extensions-catalina-patcher/index.html68
1 files changed, 68 insertions, 0 deletions
diff --git a/build/safari-extensions-catalina-patcher/index.html b/build/safari-extensions-catalina-patcher/index.html
new file mode 100644
index 0000000..0a351ef
--- /dev/null
+++ b/build/safari-extensions-catalina-patcher/index.html
@@ -0,0 +1,68 @@
+<!doctype html>
+<html lang="en" id="top">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="icon" href="data:,">
+ <title>Enabling Safari Extensions with the macOS Catalina Patcher</title>
+ <link href="https://bt.ht/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}table{text-align:left;width:100%;}</style>
+</head>
+
+<nav>
+ <a href="#menu">Menu &darr;</a>
+</nav>
+
+<main>
+<h1>Enabling Safari Extensions with the macOS Catalina Patcher</h1>
+<p>2021-09-23</p>
+<p>I have an old 2011 MacBook Air that is running the latest version of macOS Catalina thanks to the very wonderful <a href="http://dosdude1.com/catalina/">Catalina Patcher</a> by dosdude1. This project has made it possible for me to run and test some of the latest software from Apple - namely Safari 15.</p>
+<p>I ran into a small bug early on though – Safari extensions couldn’t be activated via the preferences menu. Luckily I discovered a very simple fix. My hope is this might help others (as small of a demographic that might be) who run into the same issue with the Catalina Patcher.</p>
+<ul>
+<li>Close/Quit Safari completely</li>
+<li>Open the Finder and use the shortcut <code>⌘ Shift G</code></li>
+<li>Paste the following to navigate to the proper folder: <code>~/Library/Containers/com.apple.Safari/Data/Library/Safari/AppExtensions</code></li>
+<li>Open the <code>Extensions.plist</code> in your favourite text editor (I’m a big fan of Panic's Nova)</li>
+<li>Below each extensions <code>&lt;dict&gt;</code> tag, add the following: <code>&lt;key&gt;Enabled&lt;/key&gt;&lt;true/&gt;</code></li>
+<li>Save the file and relaunch Safari</li>
+</ul>
+<p>Reference of what it should look like (AdBlock for this example):</p>
+<pre><code>&lt;key&gt;org.adblockplus...&lt;/key&gt;
+ &lt;dict&gt;
+ &lt;key&gt;AddedDate&lt;/key&gt;
+ &lt;date&gt;2021-09-23T14:00:47Z&lt;/date&gt;
+ &lt;key&gt;Enabled&lt;/key&gt;
+ &lt;true/&gt;
+ &lt;key&gt;WebsiteAccess&lt;/key&gt;
+ &lt;dict&gt;
+ &lt;key&gt;Allowed Domains&lt;/key&gt;
+ &lt;array/&gt;
+ &lt;key&gt;Has Injected Content&lt;/key&gt;
+ &lt;true/&gt;
+ &lt;key&gt;Level&lt;/key&gt;
+ &lt;string&gt;All&lt;/string&gt;
+ &lt;/dict&gt;
+ &lt;/dict&gt;
+</code></pre>
+<p>After following those simple steps you should have working extensions in Safari. Have fun on your old, "unsupported" Apple devices!</p>
+<footer role="contentinfo">
+ <h2>Menu Navigation</h2>
+ <ul id="menu">
+ <li><a href="/">Home</a></li>
+ <li><a href="/projects">Projects</a></li>
+ <li><a href="/uses">Uses</a></li>
+ <li><a href="/wiki">Wiki</a></li>
+ <li><a href="/resume">Resume</a></li>
+ <li><a href="/colophon">Colophon</a></li>
+ <li><a href="/now">Now</a></li>
+ <li><a href="/donate">Donate</a></li>
+ <li><a href="/atom.xml">RSS</a></li>
+ <li><a href="#top">&uarr; Top of the page</a></li>
+ </ul>
+ <small>
+ Built with <a href="https://git.sr.ht/~bt/barf">barf</a>. <br>
+ Maintained with ♥ for the web. <br>
+ Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
+ The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
+ </small>
+</footer> \ No newline at end of file