Paper To Audio

Allows one to turn the text in academic papers to speech. Can be done by selecting a section (Abstract, Introduction etc.) or…

What is Paper To Audio?

Paper To Audio is a Chrome extension developed by clarksonchris025, and its main feature is "Allows one to turn the text in academic papers to speech. Can be done by selecting a section (Abstract, Introduction etc.) or…".

Extension Screenshots

screenshot

Download Paper To Audio Extension CRX File

Download Paper To Audio extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Allows one to turn the text in academic papers to speech. Can be done by selecting a section (Abstract, Introduction etc.) or highlighting text.

Would appreciate a $2 donation :).

NOTE: NOT GUARANTEED TO WORK ON ALL COMPUTERS- PLEASE ENSURE IT WORKS ON YOUR SYSTEM BEFORE DONATING.

Instructions:
1. Download the app and refresh all tabs that are opened in chrome before using on any of them.

2. Open the page of an academic journal and either highlight the text of interest or select a section of the paper that you would like to be read from the "Choose section to read" menu.

3. Press the play and pause buttons to start and pause the speech. When finished listening- you must click the cancel (X) button to stop the speech so that you can move on and read something else. Speed and voice options are also available.

4. Rewind and fast forward options are available through the according icons. You can also go back and forward paragraphs with the up and down arrows (how many paragraphs you want to rewind/skip can be input in the textbox beside these buttons). NOTE: rewind/ forward options are only possible when reading the paper in terms of sections i.e. not when highlighting/selecting text with the mouse.

5. If you are reading highlighted text you must have the "read highlighted" checkbox option selected. (NOTE: If the document is a PDF- you must highlight the text of interest and right-click and then select "read" option)

6. The app will remove references according to the journal that you select- see below the modifications that will be made
Cell:
Input:
 The cat sat on the mat (Williams et al., 2019). It was comfortable (Jones et al., 2019; Fred et al., 2014).
Spoken:
  The cat sat on the mat. It was comfortable.

Nature:
Input:
 The cat sat on the mat2,3. It was comfortable4-7.
Spoken:
  The cat sat on the mat. It was comfortable.

Science:
Input:
 The cat sat on the mat (1). It was comfortable (2-6).
Spoken:
  The cat sat on the mat. It was comfortable.

NOTE: to indiscriminately remove/skip text in circular brackets- select the checkbox "remove all in '(..)'" and the same for square brackets.

7. The app may either pronounce words certain words incorrectly or unwantedly omit certain characters due to selected reference style. To mitigate this, there is a pair of text boxes labelled "Replace" and "With" where you can enter the text that you want to correct so that it can be pronounced correctly or prevent unwanted omission due to referencing. The "Add" and "Delete filter" buttons allow to add/ delete as many "Replace" and "With" text boxes as are needed. Regular expressions are accepted in text boxes (in javascript style). 

Full tutorial for use is available at: https://www.youtube.com/watch?v=g8FF2T0xBLg                    

Extension Basic Information

Name Paper To Audio Paper To Audio
ID djncfliejhhejjgbhcopflpnlaeicnco
Official URL https://chromewebstore.google.com/detail/paper-to-audio/djncfliejhhejjgbhcopflpnlaeicnco
Description Allows one to turn the text in academic papers to speech. Can be done by selecting a section (Abstract, Introduction etc.) or…
File Size 2.89 MB
Installation Count 1,693
Current Version 2.2
Last Updated 2022-05-23
Publish Date 2020-05-29
Rating 4.10/5 Total 10 Ratings
Developer clarksonchris025
Email [email protected]
Payment Type in_app
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paper To Audio",
    "version": "2.2",
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "ExtPay.js",
            "jquery-3.1.0.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "paper_to_audio4.png",
        "default_popup": "popup.html"
    }
}