Speak Selection

Speaks the current selection out loud.

Speak Selectionคืออะไร?

Speak Selection เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pjanda และคุณลักษณะหลักของมันคือ "Speaks the current selection out loud."

ภาพหน้าจอของส่วนขยาย

screenshot

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

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

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

                                            

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

ชื่อ Speak Selection Speak Selection
ID jiinpfgcngkgalkhmkkanaacpkmgkedm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/speak-selection/jiinpfgcngkgalkhmkkanaacpkmgkedm
คำอธิบาย Speaks the current selection out loud.
ขนาดไฟล์ 54.52 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2017-04-12
วันที่เผยแพร่ 2017-04-12
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Pjanda
ประเภทการชำระเงิน free
ภาษาที่รองรับ nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak Selection",
    "version": "1.1",
    "description": "Speaks the current selection out loud.",
    "permissions": [
        "",
        "tts",
        "tabs"
    ],
    "background": {
        "scripts": [
            "keycodes.js",
            "tabs.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "SpeakSel19.png",
        "default_title": "Speak Selection"
    },
    "options_page": "options.html",
    "minimum_chrome_version": "14",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "keycodes.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "SpeakSel16.png",
        "48": "SpeakSel48.png",
        "128": "SpeakSel128.png",
        "256": "SpeakSel256.png"
    },
    "manifest_version": 2
}