Michromephone

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

Apa itu Michromephone?

Michromephone adalah ekstensi Chrome yang dikembangkan oleh mgakeson, dan fitur utamanya adalah "A chrome extension that helps users send messages to their friends from the browser with voice commands".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Michromephone

Unduh file ekstensi Michromephone 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

                        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                    

Informasi Dasar Ekstensi

Nama Michromephone Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
URL Resmi https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco
Deskripsi A chrome extension that helps users send messages to their friends from the browser with voice commands
Ukuran File 1.27 MB
Jumlah Instalasi 19
Versi Saat Ini 1.2
Terakhir Diperbarui 2022-09-18
Tanggal Publikasi 2022-06-09
Pengembang mgakeson
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}