Word Count: Difference between revisions

From Librivox wiki
Jump to navigationJump to search
(New page: == Firefox Add-on == A useful add-on is Word Count Plus, which counts the number of words in selected text. It can also add the count to a running total. [[https://addons.mozilla.org/en-US...)
 
(10 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== Firefox Add-on ==
LibriVox member ''peegee'' has written a script for web browsers which may make the BC's job of compiling word counts for the Magic Window a little easier.
A useful add-on is Word Count Plus, which counts the number of words in selected text. It can also add the count to a running total. [[https://addons.mozilla.org/en-US/firefox/addon/4718 https://addons.mozilla.org/en-US/firefox/addon/4718]]


== Alternative for Firefox, Chrome and Opera ==
== How it Works ==
LibriVox member ''peegee'' has written a script for web browsers which may make the job a little easier.
The script runs against the HTML ebooks on [http://www.gutenberg.org/wiki/Main_Page Project Gutenberg].
 
The script runs against the HTML ebooks on Gutenberg.
# you click the paragraph where you want to start the count,
# you click the paragraph where you want to start the count,
# it asks you the target number of words,
# it asks you the target number of words,
Line 16: Line 13:
Here are a few screenshots to illustrate the process:
Here are a few screenshots to illustrate the process:


[[Image:Wordcount1.png|frame|The first prompt]]
<gallery>
[[Image:Wordcount2.png|frame|The choice]]
Image:Wordcount1.png|The first prompt
[[Image:Wordcount3.png|frame|The count displayed]]
Image:Wordcount2.png|Choose target number
Image:Wordcount3.png|The count displayed
</gallery>


== Installing the Script ==
== Installing the Script ==
The method of installation depends on the browser
The method of installation depends on the browser (Firefox and Chrome may need to be re-started after installation, Opera does not):


=== Firefox ===
=== Firefox ===
# [https://addons.mozilla.org/en-US/firefox/addon/748 Greasemonkey] You will first need the GreaseMonkey add-on for Firefox which is available from this link.
# [http://userscripts-mirror.org/scripts/show/69969 Firefox Install] Once you have GreaseMonkey installed, go here and click on the '''Install''' button
=== Google Chrome ===
[http://userscripts-mirror.org/scripts/show/70234 Chrome Install] Just go here to install the Chrome version  and click on the '''Install''' button (GreaseMonkey not needed)
=== Opera ===
#  To enable User JavaScript, use Tools > Preferences > Advanced > Content > JavaScript options, and select the directory where you will put your User JavaScript files (probably best if its a new folder with nothing else in it).
# [http://userscripts-mirror.org/scripts/show/70234 the script] then go to the script
# click the Install button to get the script in a new tab in Opera.
# from the Opera menu click ''File > Save As'' to save it into the folder you chose in the first step (probably best to just keep the suggested file-name - whatever name you choose it MUST end in .user.js )
== Limitations ==
The script only works on the Gutenberg online HTML books, not the ''text'' or ''zipped HTML'', or other formats.


You will first need the GreaseMonkey add-on for Firefox which is available here :
== Support ==
[[https://addons.mozilla.org/en-US/firefox/addon/748 Greasemonkey]]
If you have any problems installing or using this script you can either post a message in [http://forum.librivox.org/viewtopic.php?t=24437 this forum thread] or send a Private Message to ''peegee''.


Once you have GreaseMonkey installed, go here to and click on the '''Install''' button
== Other Alternatives ==
[[http://userscripts.org/scripts/show/69969 Firefox Install]]


=== Google Chrome ===
=== Script for Gutenberg Texts ===
This website script will count out the number of words in each chapter. Enter the Gutenberg project ID number, fill in additional information (how many chapters there are, how the chapter headers are written, etc) and it will return the chapter word counts and the first and last words in the chapter.
 
https://karikarito.com/wordcount
 
=== Web Browser Bookmarklet ===
Creating a new bookmark, with the code below, will count the words in a highlighted piece of text.


Just go here to install the Chrome version  and click on the '''Install''' button (GreaseMonkey not needed)
You can use ''Word Count'' for the bookmark name, and then put the code into the address box, in the ''details'' section.
[[http://userscripts.org/scripts/show/70234 Chrome Install]]


javascript:(function(){var t;if (window.getSelection) t = window.getSelection();else if (document.selection) t = document.selection.createRange();if (t.text != undefined) t = t.text;if(!t || t == ""){ a = document.getElementsByTagName("textarea"); for(i=0; i<a.length; i++) { if(a[i].selectionStart != undefined && a[i].selectionStart != a[i].selectionEnd) { t = a[i].value.substring(a[i].selectionStart, a[i].selectionEnd); break; } }}if(!t || t == "")alert("please select some text");else alert("word count: " + t.toString().match(/(\S+)/g).length);})()


=== Opera ===
=== Microsoft Office Word ===
Microsoft Word, and probably other text document creation software, has built-in word counting software.  Copy and paste your text into a blank page, Select All (or highlight the portion you are word counting), and go Review/Word Count.

Revision as of 00:07, 30 May 2017

LibriVox member peegee has written a script for web browsers which may make the BC's job of compiling word counts for the Magic Window a little easier.

How it Works

The script runs against the HTML ebooks on Project Gutenberg.

  1. you click the paragraph where you want to start the count,
  2. it asks you the target number of words,
  3. it quickly goes through every paragraph from that point onwards and counts the words and the running total
  4. it stops when it reaches the target, or the end of the chapter if before
  5. the page is temporarily changed to display the word counts right there at the end of each paragraph
  6. you can repeat this as many times as you like, each time you click a paragraph the temporary page changes are removed

Screenshots

Here are a few screenshots to illustrate the process:

Installing the Script

The method of installation depends on the browser (Firefox and Chrome may need to be re-started after installation, Opera does not):

Firefox

  1. Greasemonkey You will first need the GreaseMonkey add-on for Firefox which is available from this link.
  2. Firefox Install Once you have GreaseMonkey installed, go here and click on the Install button

Google Chrome

Chrome Install Just go here to install the Chrome version and click on the Install button (GreaseMonkey not needed)

Opera

  1. To enable User JavaScript, use Tools > Preferences > Advanced > Content > JavaScript options, and select the directory where you will put your User JavaScript files (probably best if its a new folder with nothing else in it).
  2. the script then go to the script
  3. click the Install button to get the script in a new tab in Opera.
  4. from the Opera menu click File > Save As to save it into the folder you chose in the first step (probably best to just keep the suggested file-name - whatever name you choose it MUST end in .user.js )

Limitations

The script only works on the Gutenberg online HTML books, not the text or zipped HTML, or other formats.

Support

If you have any problems installing or using this script you can either post a message in this forum thread or send a Private Message to peegee.

Other Alternatives

Script for Gutenberg Texts

This website script will count out the number of words in each chapter. Enter the Gutenberg project ID number, fill in additional information (how many chapters there are, how the chapter headers are written, etc) and it will return the chapter word counts and the first and last words in the chapter.

https://karikarito.com/wordcount

Web Browser Bookmarklet

Creating a new bookmark, with the code below, will count the words in a highlighted piece of text.

You can use Word Count for the bookmark name, and then put the code into the address box, in the details section.

javascript:(function(){var t;if (window.getSelection) t = window.getSelection();else if (document.selection) t = document.selection.createRange();if (t.text != undefined) t = t.text;if(!t || t == ""){ a = document.getElementsByTagName("textarea"); for(i=0; i<a.length; i++) { if(a[i].selectionStart != undefined && a[i].selectionStart != a[i].selectionEnd) { t = a[i].value.substring(a[i].selectionStart, a[i].selectionEnd); break; } }}if(!t || t == "")alert("please select some text");else alert("word count: " + t.toString().match(/(\S+)/g).length);})()

Microsoft Office Word

Microsoft Word, and probably other text document creation software, has built-in word counting software. Copy and paste your text into a blank page, Select All (or highlight the portion you are word counting), and go Review/Word Count.