Michromephone

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

Qu'est-ce que Michromephone ?

Michromephone est une extension Chrome développée par mgakeson, et sa fonction principale est "A chrome extension that helps users send messages to their friends from the browser with voice commands".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Michromephone

Téléchargez les fichiers d'extension Michromephone au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Michromephone Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
URL Officiel https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco
Description A chrome extension that helps users send messages to their friends from the browser with voice commands
Taille du Fichier 1.27 MB
Nombre d'Installations 19
Version Actuelle 1.2
Dernière Mise à Jour 2022-09-18
Date de Publication 2022-06-09
Développeur mgakeson
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}