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文件

下載Page to Speech擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}