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…

Τι είναι το Paper To Audio;

Το Paper To Audio είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον clarksonchris025, και η κύρια λειτουργία του είναι "Allows one to turn the text in academic papers to speech. Can be done by selecting a section (Abstract, Introduction etc.) or…".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Paper To Audio

Λήψη αρχείων επέκτασης Paper To Audio σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Paper To Audio Paper To Audio
ID djncfliejhhejjgbhcopflpnlaeicnco
Επίσημο URL https://chromewebstore.google.com/detail/paper-to-audio/djncfliejhhejjgbhcopflpnlaeicnco
Περιγραφή Allows one to turn the text in academic papers to speech. Can be done by selecting a section (Abstract, Introduction etc.) or…
Μέγεθος Αρχείου 2.89 MB
Αριθμός Εγκαταστάσεων 1,693
Τρέχουσα Έκδοση 2.2
Τελευταία Ενημέρωση 2022-05-23
Ημερομηνία Δημοσίευσης 2020-05-29
Αξιολόγηση 4.10/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής clarksonchris025
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
Υποστηριζόμενες Γλώσσες 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"
    }
}