Michromephone

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

Was ist Michromephone?

Michromephone ist eine Chrome-Erweiterung, die von mgakeson entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that helps users send messages to their friends from the browser with voice commands".

Erweiterungsscreenshots

screenshot

Michromephone-Erweiterungs-CRX-Datei herunterladen

Laden Sie Michromephone-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Michromephone Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
Offizielle URL https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco
Beschreibung A chrome extension that helps users send messages to their friends from the browser with voice commands
Dateigröße 1.27 MB
Installationsanzahl 19
Aktuelle Version 1.2
Letztes Update 2022-09-18
Veröffentlichungsdatum 2022-06-09
Entwickler mgakeson
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}