Description
Add the total page counts for each of the e-book chapters (this requires buying the e-books):
Motivation
So that we can display and sort through the length of the e-book chapters.

Suggested Implementation
This can be extracted from the Kindle app, where the current page number can be viewed. This relies on the content's absolute position (and will not change if you change your font size). You can then use the simple formula: curr_chapter_page_count = next_chapter_page_start - curr_chapter_page_start.
Note that the page number cannot be accessed from the free sample version.
Alternate Implementations
None
Description
Add the total page counts for each of the e-book chapters (this requires buying the e-books):
Motivation
So that we can display and sort through the length of the e-book chapters.
Suggested Implementation
This can be extracted from the Kindle app, where the current page number can be viewed. This relies on the content's absolute position (and will not change if you change your font size). You can then use the simple formula:
curr_chapter_page_count = next_chapter_page_start - curr_chapter_page_start.Note that the page number cannot be accessed from the free sample version.
Alternate Implementations
None