diff options
-rw-r--r-- | CHANGELOG | 6 | ||||
-rw-r--r-- | Makefile | 21 | ||||
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | manifest.json | 2 |
4 files changed, 34 insertions, 4 deletions
@@ -1,6 +1,12 @@ CHANGELOG ========= +v0.1.1 (2021-09-21): + Fixes: + + * Remove the extension reload keyboard shortcut in Chrome, as it isn't + necessary in Chrome and caused a load error. + v0.1.0 (2021-09-16): Additions: diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..afd4597 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Copyright (c) 2021 Teddy Wing +# +# This file is part of Legibility. +# +# Legibility is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at +# your option) any later version. +# +# Legibility is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Legibility. If not, see <https://www.gnu.org/licenses/>. + + +.PHONY: chrome +chrome: + perl -i -0777 -pe 's/,\n\n\t"commands".*\t}//ms' manifest.json @@ -54,9 +54,12 @@ button on Legibility’s row. ### Chrome -Begin by cloning this repository. Open the Extensions page -(`chrome://extensions/`) and click the “Load unpacked” button. In the resulting -file browser, select the extension’s directory. + $ git clone https://github.com/teddywing/Legibility.git + $ cd Legibility + $ make chrome + +Open the Extensions page (`chrome://extensions/`) and click the “Load unpacked” +button. In the resulting file browser, select the extension’s directory. ## License diff --git a/manifest.json b/manifest.json index c30245f..f5ad382 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Legibility", "description": "Apply custom CSS to web pages.", - "version": "0.1.0", + "version": "0.1.1", "applications": { "gecko": { |