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은(는) clarksonchris025에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows one to turn the text in academic papers to speech. Can be done by selecting a section (Abstract, Introduction etc.) or…"입니다.

확장 프로그램 스크린샷

screenshot

Paper To Audio 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}