Michromephone

A chrome extension that helps users send messages to their friends from the browser with voice commands

Michromephoneคืออะไร?

Michromephone เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mgakeson และคุณลักษณะหลักของมันคือ "A chrome extension that helps users send messages to their friends from the browser with voice commands"

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

screenshot

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

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

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

                        Michromephone is a little personal project that allows users to send discord messages and emails to friends from the chrome browser by using simple voice commands. We've also added additional voice commands to allow a user to:
- copy text from a webpage 
- read text out loud from a webpage
- send a link of the current tab
- stores spoken commands into a users clipboard (that location where data is stoed when you copy and paste text) which can be sent as messages                    

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

ชื่อ Michromephone Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco
คำอธิบาย A chrome extension that helps users send messages to their friends from the browser with voice commands
ขนาดไฟล์ 1.27 MB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2022-09-18
วันที่เผยแพร่ 2022-06-09
ผู้พัฒนา mgakeson
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Michromephone",
    "description": "A chrome extension that helps users send messages to their friends from the browser with voice commands",
    "version": "1.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "michromephone16.png",
        "48": "michromephone16.png",
        "128": "michromephone16.png"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "voiceRecognition.js",
                "pageReader.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}