diff options
author | Teddy Wing | 2018-08-05 04:55:20 +0200 |
---|---|---|
committer | Teddy Wing | 2018-08-05 05:00:14 +0200 |
commit | be56f2a0c670d367f4a46e1d5c57537d265d4acf (patch) | |
tree | 5fdae067fdb882d7f062ee11b5ca40a8eb4554df /manifest.json | |
parent | 34ac3ec06080de340f6454be10075ad8983ba9bc (diff) | |
download | Legibility-be56f2a0c670d367f4a46e1d5c57537d265d4acf.tar.bz2 |
README: Add installation instructions
Includes instructions for Chrome and Firefox. Firefox is a little more
involved. For now not bothering to sign the extension.
Also update `manifest.json` to give the extension an add-on ID. This is
required as it must be used as the directory name in the Firefox
`extensions/` profile folder.
Thanks to these resources for explaining how to install an unpacked
extension in Firefox:
- https://stackoverflow.com/questions/27155766/how-to-install-unpacked-extension-in-firefox-chrome/27158189#27158189
- https://developer.mozilla.org/en-US/docs/Archive/Add-ons/Setting_up_extension_development_environment#Firefox_extension_proxy_file
- https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Alternative_distribution_options/Sideloading_add-ons
- https://stackoverflow.com/questions/37728865/install-webextensions-on-firefox-from-the-command-line/37739112#37739112
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json index a744fb5..1a3553b 100644 --- a/manifest.json +++ b/manifest.json @@ -4,6 +4,12 @@ "description": "Apply custom CSS to web pages.", "version": "0.0.1", + "applications": { + "gecko": { + "id": "com.teddywing@legibility" + } + }, + "content_scripts": [ { "matches": [ |