screenreader standalone

Reads out aloud web pages easily and gives your eyes a much needed break!

screenreader standalone란 무엇입니까?

screenreader standalone은(는) saikat guha에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reads out aloud web pages easily and gives your eyes a much needed break!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

screenreader standalone 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Seen a great tutorial or ebook online and want to dive in , but finding yourself unable to read after 5 mins? Having eyestrain problems ? I had the same problem and it really troubled me a lot. so i created this extension to read(actually hear) articles , tutorials etc online. Installing it does not add any extra interface whatsoever.

The operation is very simple. To read any text just select the text BEFORE it and press ,(comma) key. The text selection automatically jumps to the line and reads it out aloud. And similiarly keys are there for prev/next sentence, word and paragraph. 

RECOMMENDED: Install the free high quality tts voice from google for better results from : https://chrome.google.com/webstore/detail/us-english-female-text-to/pkidpnnapnfgjhfhkpmjpbckkbaodldb
It also works offline

KEYMAP(also on welcome page and options page, after installing)
, key goes to next line and 'reads it'(i.e upto next full stop) 
'm' key goes to previous line and reads it.(i.e upto previous full stop) 
' key to go upto next punctuation mark 
; key to go upto previous punctuation mark 
shift+i to invert colors
[ key to go to previous word
] key to go to next word
. key to jump back an entire paragraph
/ key to jump forward an entire paragraph .press enter key to stop speech if already speaking. pressing any other key will speak the currently selected text again

The important thing is that everything is done using single key presses so you can comfortably close your eyes and use one hand to operate it. All the required keys are very adjacent to each other.There is absolutely no additional interface added. you press a key and the text selection moves around and is read aloud. That is all. Also pressing ' key moves upto next punctuation mark . This is a very important feauture as most logical breaks are along punctuation marks.

Currently continious reading is not supported , i.e you need to press next/prev sentence/paragraph buttons etc everytime you need to go to a new sentence/paragraph etc and also keymap cannot be customised and additionally if offline , there are a few issues. Also with safaribooksonline.com it does not work properly. 
To disable/enable for any specific page just click the screenreader icon

This project is hosted on github at https://github.com/sktguha/screenreader_deploy_ready_standalone
For better offline reading experience (like reading ebooks in html or converted to html from pdf etc) you can try out a windows specfic version at 
https://github.com/sktguha/screenreader-dependant
also one for mozilla firefox mobile android https://github.com/sktguha/screenreader_mozilla_mobile

like on facebook for updates 
https://www.facebook.com/screenreaderchrome

contact me 
gmail : [email protected] 
on linkedln  http://in.linkedin.com/pub/saikat-guha/8a/347/a15
on facebook  https://www.facebook.com/saikat.guha.71                    

확장 프로그램 기본 정보

이름 screenreader standalone screenreader standalone
ID llkakibmhkbdigjjjbgipijjdnlefpai
공식 URL https://chromewebstore.google.com/detail/screenreader-standalone/llkakibmhkbdigjjjbgipijjdnlefpai
설명 Reads out aloud web pages easily and gives your eyes a much needed break!
파일 크기 20.71 KB
설치 횟수 1,030
현재 버전 0.1.5
최근 업데이트 2015-12-26
출시 날짜 2015-12-26
평점 2.09/5 총 11 개의 평점
개발자 saikat guha
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://sktguha.wordpress.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "screenreader standalone",
    "short_name": "screenreader",
    "version": "0.1.5",
    "description": "Reads out aloud web pages easily and gives your eyes a much needed break!",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [
                "sc.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_page": "options.html#keymap",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}