summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2010-11-13 18:54:00 +0000
committerNick White <git@njw.me.uk>2010-11-13 18:54:00 +0000
commit3d293ecb997547ce48ab5ee3c6a83effddbbb0ae (patch)
tree87553f863bbd48a8268ccbebd71a3a7783c720e0 /INSTALL
parent6184d6bdac39e3a1f2e72ce180db40cb896724cf (diff)
Rename to simplyread to avoid name clash
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL24
1 files changed, 12 insertions, 12 deletions
diff --git a/INSTALL b/INSTALL
index 65a948e..59fe2cb 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,10 +1,10 @@
-Readable is written in ECMAScript, and how to launch it varies a
+SimplyRead is written in ECMAScript, and how to launch it varies a
little depending on browser.
# Firefox
-Readable is now packaged as an extension for firefox (and other
-browsers of its kin.) You can either get it from the readable web
+SimplyRead is now packaged as an extension for firefox (and other
+browsers of its kin.) You can either get it from the SimplyRead web
page, or build it by running:
make xpi
@@ -12,16 +12,16 @@ page, or build it by running:
# Chromium
-Readable also exists as an extension for chromium (and derived
+SimplyRead also exists as an extension for chromium (and derived
browsers.) It isn't currently available on the "extensions gallery,"
but if someone wants to post it there, please go ahead. For now
-you can get it from the readable web page, or by running:
+you can get it from the SimplyRead web page, or by running:
make crx
# Surf
-To use readable from surf, and trigger it from ctrl-alt-r, add the
+To use SimplyRead from surf, and trigger it from ctrl-alt-r, add the
following to script.js
(function() {
@@ -30,26 +30,26 @@ following to script.js
function keybind(e) {
if (e.keyIdentifier == "U+0052" && e.ctrlKey && e.altKey) // ctrl-alt-r
- readable();
+ simplyread();
}
-/* copy readable.js here */
+/* copy simplyread.js here */
# Uzbl
To use this from uzbl, add the following line to the config file:
-@cbind r = script file:///path/to/readable.js
+@cbind r = script file:///path/to/simplyread.js
-You'll also have to add the statement 'readable();' to the bottom of
-readable.js.
+You'll also have to add the statement 'simplyread();' to the bottom of
+simplyread.js.
# Other browsers; 'bookmarklet'
To use this as a 'bookmarklet', create a new bookmark with an address of:
-javascript:(function(){document.body.appendChild(document.createElement('script')).src='file:///path/to/readable.js';})();javascript:(function(){readable();})();
+javascript:(function(){document.body.appendChild(document.createElement('script')).src='file:///path/to/simplyread.js';})();javascript:(function(){simplyread();})();
Note that due to browsers being afraid of mixing local and remote files
this may not work for http:// addresses. If this is the case, you can