From 3d293ecb997547ce48ab5ee3c6a83effddbbb0ae Mon Sep 17 00:00:00 2001 From: Nick White Date: Sat, 13 Nov 2010 18:54:00 +0000 Subject: Rename to simplyread to avoid name clash --- INSTALL | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'INSTALL') 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 -- cgit v1.2.3