<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Legibility, branch v0.1.0</title>
<subtitle>A WebExtension that lets you override the CSS of any website</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/'/>
<entry>
<title>Increase version v0.0.1 -&gt; v0.1.0</title>
<updated>2021-09-16T18:42:41+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-16T18:42:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=26bcc649bc44d8b1cf6bbbf04597e703ddce31fe'/>
<id>26bcc649bc44d8b1cf6bbbf04597e703ddce31fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add CHANGELOG</title>
<updated>2021-09-16T18:42:29+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-16T18:42:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=b8b89348cc26b0a65e46bd0b6e9266c737f44e7f'/>
<id>b8b89348cc26b0a65e46bd0b6e9266c737f44e7f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>README: Update copyright year</title>
<updated>2021-09-10T17:44:55+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-10T17:44:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=0af90bfea7d67ad05008893f09c06da8b660eabe'/>
<id>0af90bfea7d67ad05008893f09c06da8b660eabe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'reload-extension-shortcut'</title>
<updated>2021-09-10T17:44:47+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-10T17:44:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=c92c854988e025850b8a3e97b0d84ca4b69ca681'/>
<id>c92c854988e025850b8a3e97b0d84ca4b69ca681</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>manifest.json: Remove `activeTab` permission</title>
<updated>2021-09-09T21:55:45+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-09T21:55:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=dd35d8da997dd3fa9f9eb3c749cb13cbc5215131'/>
<id>dd35d8da997dd3fa9f9eb3c749cb13cbc5215131</id>
<content type='text'>
We already request permission on all `http://` and `https://` hosts.
That should give us all the permission we need. The `activeTab`
permission just seems redundant. It's probably a holdover that no longer
applies.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We already request permission on all `http://` and `https://` hosts.
That should give us all the permission we need. The `activeTab`
permission just seems redundant. It's probably a holdover that no longer
applies.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a keyboard shortcut to reload the extension</title>
<updated>2021-09-09T21:47:56+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-09T21:47:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=795f5c25ec5e6a517ff9d12ac8a731d4a2881e68'/>
<id>795f5c25ec5e6a517ff9d12ac8a731d4a2881e68</id>
<content type='text'>
On Firefox, when adding or modifying CSS files, the changes aren't
applied on a page refresh. Instead, they're applied when the extension
is reloaded. Provide a keyboard shortcut to enable quick reloads, rather
than having to open `about:addons` and toggle the extension off and on.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Firefox, when adding or modifying CSS files, the changes aren't
applied on a page refresh. Instead, they're applied when the extension
is reloaded. Provide a keyboard shortcut to enable quick reloads, rather
than having to open `about:addons` and toggle the extension off and on.
</pre>
</div>
</content>
</entry>
<entry>
<title>wildcard_domains: Don't redeclare the `domain` variable</title>
<updated>2021-09-09T19:46:17+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-09T19:46:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=64cc9ba7781b146da1730ab94d0c27a86315c968'/>
<id>64cc9ba7781b146da1730ab94d0c27a86315c968</id>
<content type='text'>
This variable is already declared at the top of the loop. We don't need
to redeclare it in the if/else branches.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This variable is already declared at the top of the loop. We don't need
to redeclare it in the if/else branches.
</pre>
</div>
</content>
</entry>
<entry>
<title>README: Add documentation for domain wildcards</title>
<updated>2021-09-09T19:46:00+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-09T19:46:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=6801542f066d76f6deb86dd92d23e72c7b90793b'/>
<id>6801542f066d76f6deb86dd92d23e72c7b90793b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>README: Move Firefox installation instructions above Chrome</title>
<updated>2021-09-08T23:04:57+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-08T23:04:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=5e2a889c85d88a3a7ce9fc472a55afda81b1c022'/>
<id>5e2a889c85d88a3a7ce9fc472a55afda81b1c022</id>
<content type='text'>
Firefox has been my primary browser for several years now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Firefox has been my primary browser for several years now.
</pre>
</div>
</content>
</entry>
<entry>
<title>background.js: Update copyright year</title>
<updated>2021-09-08T21:01:16+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2021-09-08T21:01:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/Legibility/commit/?id=94a13286f9d7e419d63f34f74644adad1ff2e4bd'/>
<id>94a13286f9d7e419d63f34f74644adad1ff2e4bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
