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

Apa itu Page to Speech?

Page to Speech adalah ekstensi Chrome yang dikembangkan oleh https://www.dimoff.biz, dan fitur utamanya adalah "This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon".

Unduh Berkas CRX Ekstensi Page to Speech

Unduh file ekstensi Page to Speech dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama Page to Speech Page to Speech
ID ncillngfchljkeoiaefmncdcgkpogbhh
URL Resmi https://chromewebstore.google.com/detail/page-to-speech/ncillngfchljkeoiaefmncdcgkpogbhh
Deskripsi This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon
Ukuran File 49.07 KB
Jumlah Instalasi 44
Versi Saat Ini 2.0.1
Terakhir Diperbarui 2015-12-18
Tanggal Publikasi 2015-12-18
Pengembang https://www.dimoff.biz
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}