diff options
-rw-r--r-- | README.md | 22 | ||||
-rw-r--r-- | manifest.json | 6 |
2 files changed, 27 insertions, 1 deletions
@@ -26,7 +26,27 @@ subdomains), and terminated by a `.css` extension. ## Install -This extension _must_ be installed as an unpacked extension. +This extension should be installed unpacked to allow you to freely add and +modify stylesheets in the `css/` directory. + + +### 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. + + +### Firefox +This extension is unsigned. Refer to "What are my options if I want to install +unsigned extensions in Firefox?" in +https://wiki.mozilla.org/Add-ons/Extension_Signing#FAQ before attempting to +install it. + + cd '~/Library/Application Support/Firefox/Profiles/PROFILE_DIRECTORY/extensions' + git clone https://github.com/teddywing/Legibility.git 'com.teddywing@legibility' + +Relaunch Firefox and open the Add-ons page (`about:addons`). Click the "Enable" +button on Legibility's row. ## License 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": [ |