AudioRead

Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.

AudioReadคืออะไร?

AudioRead เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aral Roca และคุณลักษณะหลักของมันคือ "Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AudioRead

ดาวน์โหลดไฟล์ส่วนขยาย AudioRead ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Selecciona texto y pulsa la combinación de teclas que configures para reproducir, parar, pausar, etc el texto en audio. Disponible de momento en Español, Inglès y Catalan.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AudioRead AudioRead
ID mkkjgohmfhplcabeogpampkifmmcfepk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/audioread/mkkjgohmfhplcabeogpampkifmmcfepk
คำอธิบาย Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.
ขนาดไฟล์ 10 KB
จำนวนการติดตั้ง 73
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-12-05
วันที่เผยแพร่ 2016-12-05
คะแนน 3.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Aral Roca
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AudioRead",
    "description": "Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "start": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "start audio",
            "shortcut": "Command+Shift+L",
            "global": true
        },
        "stop": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "stop audio",
            "shortcut": "Command+Shift+P",
            "global": true
        },
        "pause": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "pause audio",
            "shortcut": "Command+Shift+O",
            "global": true
        },
        "resume": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "resume audio",
            "shortcut": "Command+Shift+P",
            "global": true
        }
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "background",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "tts",
        "storage"
    ]
}