Text Narrator

This extension narrates text on the page.

Apa itu Text Narrator?

Text Narrator adalah ekstensi Chrome yang dikembangkan oleh Jeffrey Yang, dan fitur utamanya adalah "This extension narrates text on the page.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Text Narrator

Unduh file ekstensi Text Narrator 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 is an open source simple text-to-speech narrator that uses Chrome's built-in Text-to-Speech API.  

Tested on Windows 8 and OSX so far. Please report any issues.

Source code and issue tracking are available here:
https://github.com/sajacy/textnarrator-chrome-extension                    

Informasi Dasar Ekstensi

Nama Text Narrator Text Narrator
ID gmachijmpknamgdoelcmkcepbjilhfoe
URL Resmi https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe
Deskripsi This extension narrates text on the page.
Ukuran File 18.79 KB
Jumlah Instalasi 50,000
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-01-20
Tanggal Publikasi 2014-01-20
Penilaian 2.94/5 Total 54 Penilaian
Pengembang Jeffrey Yang
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Narrator",
    "description": "This extension narrates text on the page.",
    "version": "1.0",
    "background": {
        "scripts": [
            "narrate.js",
            "background.js"
        ]
    },
    "icons": {
        "16": "img\/speak16.png",
        "48": "img\/speak48.png",
        "128": "img\/speak.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "tts",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_icon": "img\/speak.png",
        "default_popup": "popup.html"
    }
}