summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2010-11-02 19:14:41 +0000
committerNick White <git@njw.me.uk>2010-11-02 19:14:41 +0000
commitc05ab1fd001058313d5bf1ef6b13a4a40a4c6342 (patch)
treeedae7f301fa85ea2bcefa9f74183aefaa733597f
parente2e0ca32a9073de01ceb93b2c4a8045caf761b40 (diff)
Add firefox to INSTALL
-rw-r--r--INSTALL18
1 files changed, 13 insertions, 5 deletions
diff --git a/INSTALL b/INSTALL
index ed062bf..3c835e9 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,17 +1,26 @@
Readable is written in ECMAScript, and how to launch it varies a
little depending on browser.
+# Firefox
+
+Readable is now packaged as an addon for firefox (and other browsers
+of its kin.) You can either get it from the readable web page, or
+build it by running:
+
+ make xpi
+
+
# Surf
-To use it from surf, and trigger it from ctrl-alt-r, add the
+To use readable from surf, and trigger it from ctrl-alt-r, add the
following to script.js
(function() {
- document.addEventListener('keydown', keybind, false);
+ document.addEventListener('keydown', keybind, false);
})();
function keybind(e) {
- if (e.keyIdentifier == "U+0052" && e.ctrlKey && e.altKey) // ctrl-alt-r
+ if (e.keyIdentifier == "U+0052" && e.ctrlKey && e.altKey) // ctrl-alt-r
readable();
}
/* copy readable.js here */
@@ -19,8 +28,7 @@ function keybind(e) {
# Uzbl
-To use this from uzbl, add the following line to the config file
-(replacing 'r' with the key to bind to):
+To use this from uzbl, add the following line to the config file:
@cbind r = script file:///path/to/readable.js