Page to Speech

This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon

Page to Speech란 무엇입니까?

Page to Speech은(는) https://www.dimoff.biz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon"입니다.

Page to Speech 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This tiny extension will produce English speech to whatever English text you highlight on a webpage.Highlight the desired text on the page or use Ctrl(Cmd)+A to select the entire page's contents and click on the extension's icon to listen to the text. You can also use the Shift+Y hotkey to produce speech. The extension will either try to produce speech from the text you highlighted on the page or from the clipboard (whatever you have currently copied in the clipboard, no matter whether it is copied from a page or from an external program)                    

확장 프로그램 기본 정보

이름 Page to Speech Page to Speech
ID ncillngfchljkeoiaefmncdcgkpogbhh
공식 URL https://chromewebstore.google.com/detail/page-to-speech/ncillngfchljkeoiaefmncdcgkpogbhh
설명 This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon
파일 크기 49.07 KB
설치 횟수 44
현재 버전 2.0.1
최근 업데이트 2015-12-18
출시 날짜 2015-12-18
개발자 https://www.dimoff.biz
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page to Speech",
    "description": "This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon",
    "author": "Ivan Dimov",
    "version": "2.0.1",
    "background": {
        "scripts": [
            "background.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "polyfill.min.js",
                "ext.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "speech.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "clipboardRead"
    ]
}